Skip to content

Commit

Permalink
Update IFlowLimit.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
ahramy committed Nov 5, 2024
1 parent e53d269 commit 1ae07e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/interfaces/IFlowLimit.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pragma solidity ^0.8.0;
*/
interface IFlowLimit {
error FlowLimitExceeded(uint256 limit, uint256 flowAmount, address tokenManager);
error FlowAdditionOverflow(uint256 flowToAdd, uint256 flowAmount, address tokenManager);
error FlowAdditionOverflow(uint256 flowAmount, uint256 flowToAdd, address tokenManager);
error FlowLimitOverflow(uint256 flowLimit, uint256 flowToCompare, address tokenManager);

event FlowLimitSet(bytes32 indexed tokenId, address operator, uint256 flowLimit_);
Expand Down

0 comments on commit 1ae07e5

Please sign in to comment.