Skip to content

Commit

Permalink
_signers commented
Browse files Browse the repository at this point in the history
  • Loading branch information
vimageDE committed Dec 16, 2024
1 parent 0ee5d82 commit 0850e25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/examples/allocator/ServerAllocator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ contract ServerAllocator is Ownable2Step, EIP712, IServerAllocator {

address private immutable _COMPACT_CONTRACT;

mapping(address => uint256) private _signers;
/// @dev mapping of a signer to their index (incremented to skip 0) in _activeSigners
mapping(address signer => uint256 index) private _signers;
address[] private _activeSigners;

mapping(bytes32 => uint256) private _attestExpirations;
Expand Down

0 comments on commit 0850e25

Please sign in to comment.