Quick smart contract fixes

This commit is contained in:
PedroCailleret
2022-12-03 01:04:40 -03:00
parent ac9bc6fa46
commit 4403541660
2 changed files with 9 additions and 2 deletions

View File

@@ -2,7 +2,6 @@
pragma solidity 0.8.9;
interface EventAndErrors {
// bytes32 constant DEPOSIT_ADDED_SIGNATURE =
/// ███ Events ████████████████████████████████████████████████████████████
@@ -85,4 +84,7 @@ interface EventAndErrors {
/// @dev Wished amount to be locked exceeds the limit allowed.
/// @dev 0x1c18f846
error AmountNotAllowed();
/// @dev Reverts when success return value returns false.
/// @dev 0xe10bf1cc
error StaticCallFailed();
}