From fbc02169448545be6c903583fbcad16ba1873075 Mon Sep 17 00:00:00 2001 From: Nenad Date: Mon, 18 Sep 2023 08:07:53 +0200 Subject: [PATCH] Revert "Revert "Remove unused errors from IterableMappingAddr"" This reverts commit 98756ce5ffd32a7ec00c258494cdba8a1396d690. --- contracts/lib/IterableMappingAddr.sol | 3 --- 1 file changed, 3 deletions(-) diff --git a/contracts/lib/IterableMappingAddr.sol b/contracts/lib/IterableMappingAddr.sol index 53aea8644..3f5fb5677 100644 --- a/contracts/lib/IterableMappingAddr.sol +++ b/contracts/lib/IterableMappingAddr.sol @@ -2,9 +2,6 @@ pragma solidity ^0.8.19; contract IterableMappingAddr { - error NonExistentKey(address key); - error DecrAmountExceedsValue(address key, uint256 currVal, uint256 decrVal); - struct Map { address[] keys; mapping(address => bool) values;