Skip to content

Commit 85e9e1e

Browse files
Merge pull request #101 from lista-dao/feature/lpproxy-pcs-v3
Fix: state variable ordering for Proxy contract
2 parents fea8e75 + 02c40d0 commit 85e9e1e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

contracts/dao/LpProxy.sol

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ contract LpProxy is OwnableUpgradeable {
1414
address cakeVault;
1515
// thena vault address
1616
address thenaVault;
17-
// PancakeSwap V3 staking vault
18-
address pcsV3LpVault;
19-
17+
2018
// distributor address -> vault address
2119
mapping(address => address) public distributorToVault;
2220

21+
// PancakeSwap V3 staking vault
22+
address pcsV3LpVault;
23+
2324
/// @custom:oz-upgrades-unsafe-allow constructor
2425
constructor() {
2526
_disableInitializers();

0 commit comments

Comments
 (0)