diff --git a/src/interfaces/child/IChildERC20Bridge.sol b/src/interfaces/child/IChildERC20Bridge.sol index b262153c..24f6d033 100644 --- a/src/interfaces/child/IChildERC20Bridge.sol +++ b/src/interfaces/child/IChildERC20Bridge.sol @@ -57,7 +57,7 @@ interface IChildERC20BridgeEvents { interface IChildERC20BridgeErrors { /// @notice Error when the amount requested is less than the value sent. error InsufficientValue(); - /// @notice Error when there is no gas payment received. + /// @notice Error when the withdrawal amount is zero error ZeroAmount(); /// @notice Error when the contract to mint had no bytecode. error EmptyTokenContract(); diff --git a/test/integration/child/withdrawals/ChildAxelarBridgeWithdrawIMX.t.sol b/test/integration/child/withdrawals/ChildAxelarBridgeWithdrawIMX.t.sol index a0d9135a..0396c0de 100644 --- a/test/integration/child/withdrawals/ChildAxelarBridgeWithdrawIMX.t.sol +++ b/test/integration/child/withdrawals/ChildAxelarBridgeWithdrawIMX.t.sol @@ -102,7 +102,7 @@ contract ChildERC20BridgeWithdrawIMXIntegrationTest is childBridge.withdrawIMX{value: withdrawFee + withdrawAmount}(withdrawAmount); } - function test_WithdrawIMXEmitsAxelarMessageEvent() public { + function test_WithdrawIMX_EmitsAxelarMessageEvent() public { uint256 withdrawFee = 300; uint256 withdrawAmount = 7 ether;