Skip to content

Commit

Permalink
style: use linter
Browse files Browse the repository at this point in the history
  • Loading branch information
1kresh committed Nov 6, 2024
1 parent 9aa6201 commit 5fc8231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion script/deploy/Vault.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract VaultScript is Script {
) public {
vm.startBroadcast();
(,, address deployer) = vm.readCallers();

bool depositWhitelist = whitelistedDepositors.length != 0;

bytes memory vaultParams = abi.encode(
Expand Down
3 changes: 1 addition & 2 deletions script/deploy/VaultTokenized.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ contract VaultTokenizedScript is Script {
) public {
vm.startBroadcast();
(,, address deployer) = vm.readCallers();

bool depositWhitelist = whitelistedDepositors.length != 0;

bytes memory vaultParams = abi.encode(
Expand Down Expand Up @@ -154,7 +154,6 @@ contract VaultTokenizedScript is Script {
Vault(vault_).renounceRole(Vault(vault_).DEFAULT_ADMIN_ROLE(), deployer);
}


console2.log("Vault: ", vault_);
console2.log("Delegator: ", delegator_);
console2.log("Slasher: ", slasher_);
Expand Down

0 comments on commit 5fc8231

Please sign in to comment.