AddressErrors
Errors
InsufficientFunds
Could not execute an output, because the application contract doesn't have enough Ether.
error InsufficientFunds(uint256 value, uint256 balance);
Parameters
| Name | Type | Description |
|---|---|---|
value | uint256 | The amount of Wei necessary for the execution of the output |
balance | uint256 | The current application contract balance |
TargetHasNoCode
Could not execute an output, because the target account doesn't have any code.
error TargetHasNoCode(address target);
Parameters
| Name | Type | Description |
|---|---|---|
target | address | The target account address |