Skip to content

Commit

Permalink
Replace mapping with array in AddressArray
Browse files Browse the repository at this point in the history
  • Loading branch information
k06a committed Mar 19, 2024
1 parent 348bb9b commit 9f839c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/libraries/AddressArray.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ library AddressArray {

/// @dev Data struct containing raw mapping.
struct Data {
mapping(uint256 => uint256) _raw;
uint256[1 << 32] _raw;
}

/// @dev Length of array.
Expand Down

0 comments on commit 9f839c7

Please sign in to comment.