Skip to content

Commit

Permalink
rearrange storage layout for upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
ukby1234 committed Oct 20, 2023
1 parent 652bd31 commit 25484cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/TapETH.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ contract TapETH is Initializable, ITapETH {
uint256 private totalShares;
uint256 private _totalSupply;
uint256 private totalRewards;
uint256 public buffer;
address public governance;
address public pendingGovernance;
mapping(address => uint256) private shares;
mapping(address => mapping(address => uint256)) private allowances;
mapping(address => bool) public pools;
uint256 public buffer;

event TransferShares(
address indexed from,
Expand Down

0 comments on commit 25484cc

Please sign in to comment.