Skip to content

Commit cb52582

Browse files
committed
Lint and cleanup
1 parent 5c43396 commit cb52582

File tree

5 files changed

+8
-141
lines changed

5 files changed

+8
-141
lines changed

broadcast/009_SetUpgradableMSCAFactoryPlugins.s.sol/80002/run-1727295498.json

Lines changed: 0 additions & 67 deletions
This file was deleted.

broadcast/009_SetUpgradableMSCAFactoryPlugins.s.sol/80002/run-latest.json

Lines changed: 0 additions & 67 deletions
This file was deleted.

script/004_DeploySingleOwnerPlugin.s.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ contract DeploySingleOwnerPluginScript is Script {
2727
function run() public {
2828
uint256 key = vm.envUint("DEPLOYER_PRIVATE_KEY");
2929
vm.startBroadcast(key);
30-
30+
3131
SingleOwnerPlugin plugin;
3232

3333
// Deploy plugin contract if it doesn't exist at the expected address
@@ -42,7 +42,7 @@ contract DeploySingleOwnerPluginScript is Script {
4242
// Log plugin manifest hash
4343
console.log("Single owner plugin manifest hash: ");
4444
console.logBytes32(keccak256(abi.encode(plugin.pluginManifest())));
45-
45+
4646
vm.stopBroadcast();
4747
}
4848
}

script/007_DeployColdStorageAddressBookPlugin.s.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ contract DeployColdStorageAddressBookPluginScript is Script {
2929
function run() public {
3030
uint256 key = vm.envUint("DEPLOYER_PRIVATE_KEY");
3131
vm.startBroadcast(key);
32-
32+
3333
ColdStorageAddressBookPlugin plugin;
3434

3535
// Deploy plugin contract if it doesn't exist at the expected address
@@ -40,11 +40,11 @@ contract DeployColdStorageAddressBookPluginScript is Script {
4040
plugin = ColdStorageAddressBookPlugin(EXPECTED_PLUGIN_ADDRESS);
4141
console.log("Found existing plugin at expected address: %s", address(plugin));
4242
}
43-
43+
4444
// Log plugin manifest hash
4545
console.log("Cold Storage Address book manifest hash: ");
4646
console.logBytes32(keccak256(abi.encode(plugin.pluginManifest())));
47-
47+
4848
vm.stopBroadcast();
4949
}
5050
}

script/011.1_SetUpgradableMSCAFactoryPlugins.s.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ pragma solidity 0.8.24;
2121
import {UpgradableMSCAFactory} from "../src/msca/6900/v0.7/factories/UpgradableMSCAFactory.sol";
2222
import {Script, console} from "forge-std/src/Script.sol";
2323

24-
// Only needed for MSCA v0.7 factories. This script is the same as 009_SetUpgradableMSCAFactoryPlugins.s.sol, but with the
24+
// Only needed for MSCA v0.7 factories. This script is the same as 009_SetUpgradableMSCAFactoryPlugins.s.sol, but with
25+
// the
2526
// default token callback plugin included).
2627
contract SetUpgradableMSCAFactoryPlugins is Script {
2728
address payable EXPECTED_FACTORY_ADDRESS = payable(vm.envAddress("UPGRADABLE_MSCA_FACTORY_ADDRESS"));
@@ -38,7 +39,7 @@ contract SetUpgradableMSCAFactoryPlugins is Script {
3839
plugins[1] = vm.envAddress("COLD_STORAGE_ADDRESS_BOOK_PLUGIN_ADDRESS");
3940
plugins[2] = vm.envAddress("WEIGHTED_MULTISIG_PLUGIN_ADDRESS");
4041
plugins[3] = vm.envAddress("DEFAULT_TOKEN_CALLBACK_PLUGIN_ADDRESS");
41-
42+
4243
for (uint256 i = 0; i < numPlugins; i++) {
4344
pluginPermissions[i] = true;
4445
}

0 commit comments

Comments
 (0)