Skip to content

Commit 9e52bd6

Browse files
committed
docs: add some docs
1 parent bfbc31a commit 9e52bd6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/contracts/treasury/Collector.sol

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ contract Collector is AccessControlUpgradeable, ReentrancyGuardUpgradeable, ICol
3434
bytes32 public constant FUNDS_ADMIN_ROLE = 'FUNDS_ADMIN';
3535

3636
// Reserved storage space to account for deprecated inherited storage
37+
// 0 was lastInitializedRevision
38+
// 1-50 were the ____gap
39+
// 51 was the reentrancy guard _status
40+
// 52 was the _fundsAdmin
41+
// On some networks the layout was shifted by 1 due to `initializing` being on slot 1
42+
// The upgrade proposal would in this case manually shift the storage layout to properly align the networks
3743
uint256[53] private ______gap;
3844

3945
/**

0 commit comments

Comments
 (0)