Skip to content

Commit

Permalink
forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
xhad committed Sep 5, 2024
1 parent 3ca7d2b commit b931140
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions script/Contracts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ interface IContracts {
function KARAK_VAULT() external view returns (address);
}


contract ChapelContracts {
address public constant DEPLOY_FACTORY = 0x964C6d4050e052D627b8234CAD9CdF0981E40EB3;
address public constant KERNEL_VAULT = 0x0000000000000000000000000000000000000000;
address public constant KARAK_VAULT = 0x0000000000000000000000000000000000000000;
}
}
1 change: 0 additions & 1 deletion script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {AnvilActors, HoleskyActors, ChapelActors, IActors} from "script/Actors.s
import {SingleVault} from "src/SingleVault.sol";
import {TransparentUpgradeableProxy} from "src/Common.sol";


contract DeployVaultFactory is Script {
function run() public {
if (block.chainid == 31337) {
Expand Down
2 changes: 1 addition & 1 deletion test/factory/create.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ contract CreateTest is Test, LocalActors, TestConstants {
asset.transfer(address(factory), 1 ether);
address vault =
factory.createSingleVault(asset, VAULT_NAME, VAULT_SYMBOL, ADMIN, minDelay, proposers, executors);
(,,string memory symbol,) = factory.vaults(vault);
(,, string memory symbol,) = factory.vaults(vault);
assertEq(symbol, VAULT_SYMBOL, "Vault timelock should match the expected address");
}

Expand Down
2 changes: 1 addition & 1 deletion test/mocks/DeployMockERC20.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ contract DeployMockERC20 is Script {
new MockERC20(name, symbol);
vm.stopBroadcast();
}
}
}

0 comments on commit b931140

Please sign in to comment.