Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
1kresh committed Aug 16, 2024
1 parent cf2a90a commit fc518b8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/contracts/vault/Vault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,9 @@ contract Vault is VaultStorage, MigratableEntity, AccessControlUpgradeable, Reen

depositWhitelist = params.depositWhitelist;

isDepositLimit = params.isDepositLimit;
depositLimit = params.depositLimit;

if (params.defaultAdminRoleHolder != address(0)) {
_grantRole(DEFAULT_ADMIN_ROLE, params.defaultAdminRoleHolder);
}
Expand Down

0 comments on commit fc518b8

Please sign in to comment.