Skip to content

Commit

Permalink
revert: to mutable storage ISMs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljankovic-txfusion committed Dec 11, 2024
2 parents d08966c + 4d342db commit 9add728
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions solidity/test/isms/MultisigIsm.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,7 @@ contract MerkleRootMultisigIsmTest is AbstractMultisigIsmTest {
mailbox = new TestMailbox(ORIGIN);
merkleTreeHook = new TestMerkleTreeHook(address(mailbox));
noopHook = new TestPostDispatchHook();
factory = IThresholdAddressFactory(
address(new StaticMerkleRootMultisigIsmFactory())
);
factory = new StaticMerkleRootMultisigIsmFactory();
mailbox.setDefaultHook(address(merkleTreeHook));
mailbox.setRequiredHook(address(noopHook));
}
Expand Down Expand Up @@ -297,9 +295,7 @@ contract MessageIdMultisigIsmTest is AbstractMultisigIsmTest {
merkleTreeHook = new TestMerkleTreeHook(address(mailbox));
noopHook = new TestPostDispatchHook();

factory = IThresholdAddressFactory(
address(new StaticMessageIdMultisigIsmFactory())
);
factory = new StaticMessageIdMultisigIsmFactory();
mailbox.setDefaultHook(address(merkleTreeHook));
mailbox.setRequiredHook(address(noopHook));
}
Expand Down

0 comments on commit 9add728

Please sign in to comment.