Skip to content

Commit

Permalink
fixed variable visiblity
Browse files Browse the repository at this point in the history
  • Loading branch information
BkChoy committed Sep 16, 2024
1 parent 03b62ae commit df1da48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/linkStaking/base/VaultControllerStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ contract VaultDepositController is Strategy {
// global state across all vault groups
GlobalVaultState public globalVaultState;
// max number of tokens that a vault can hold
uint256 internal vaultMaxDeposits;
uint256 public vaultMaxDeposits;

/**
* @notice Deposits tokens from the staking pool into vaults
Expand Down Expand Up @@ -353,7 +353,7 @@ abstract contract VaultControllerStrategy is Strategy {
// global state across all vault groups
GlobalVaultState public globalVaultState;
// max number of tokens that a vault can hold
uint256 internal vaultMaxDeposits;
uint256 public vaultMaxDeposits;

// address of vault deposit controller
address public vaultDepositController;
Expand Down

0 comments on commit df1da48

Please sign in to comment.