Skip to content

Commit

Permalink
style: use linter
Browse files Browse the repository at this point in the history
  • Loading branch information
1kresh committed Oct 31, 2024
1 parent 6af024d commit b2ce499
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions script/deploy/Vault.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,9 @@ contract VaultScript is Script {

bytes memory slasherParams;
if (slasherIndex == 0) {
slasherParams =
abi.encode(ISlasher.InitParams({baseParams: IBaseSlasher.BaseParams({isBurnerHook: burner != address(0)})}));
slasherParams = abi.encode(
ISlasher.InitParams({baseParams: IBaseSlasher.BaseParams({isBurnerHook: burner != address(0)})})
);
} else if (slasherIndex == 1) {
slasherParams = abi.encode(
IVetoSlasher.InitParams({
Expand Down
5 changes: 3 additions & 2 deletions script/deploy/VaultTokenized.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ contract VaultTokenizedScript is Script {

bytes memory slasherParams;
if (slasherIndex == 0) {
slasherParams =
abi.encode(ISlasher.InitParams({baseParams: IBaseSlasher.BaseParams({isBurnerHook: burner != address(0)})}));
slasherParams = abi.encode(
ISlasher.InitParams({baseParams: IBaseSlasher.BaseParams({isBurnerHook: burner != address(0)})})
);
} else if (slasherIndex == 1) {
slasherParams = abi.encode(
IVetoSlasher.InitParams({
Expand Down

0 comments on commit b2ce499

Please sign in to comment.