RevertOptions
Git Source (opens in a new tab)
Struct containing revert options
struct RevertOptions {
address revertAddress;
bool callOnRevert;
address abortAddress;
bytes revertMessage;
uint256 onRevertGasLimit;
}
Properties
Name | Type | Description |
---|---|---|
revertAddress | address | Address to receive revert. |
callOnRevert | bool | Flag if onRevert hook should be called. |
abortAddress | address | Address to receive funds if aborted. |
revertMessage | bytes | Arbitrary data sent back in onRevert. |
onRevertGasLimit | uint256 | Gas limit for revert tx, unused on GatewayZEVM methods |