Skip to content

Commit

Permalink
Remove public from variables having getters
Browse files Browse the repository at this point in the history
  • Loading branch information
matejos committed Apr 3, 2024
1 parent 5edf9fc commit 852c4be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ contract OrderbookDex is IOrderbookDex, ERC165, ReentrancyGuard {
using Address for address payable;

IInverseProjected1155 asset;
mapping(address => mapping(uint256 => Order)) public orders;
mapping(address => uint256) public sellersOrderId;
mapping(address => mapping(uint256 => Order)) orders;
mapping(address => uint256) sellersOrderId;

error OrderDoesNotExist(uint256 orderId);
error InsufficientEndAmount(uint256 expectedAmount, uint256 actualAmount);
Expand Down

0 comments on commit 852c4be

Please sign in to comment.