Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
prateek105 committed Aug 20, 2024
1 parent 6fa2768 commit cf48035
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/multisigProposals/MultisigProposal_01.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,16 @@ contract MultisigProposal_01 is MultisigProposal {
buildModifier(addresses.getAddress("PROTOCOL_MULTISIG"))
{
MockToken mockToken = MockToken(addresses.getAddress("TOKEN"));
address deployer = addresses.getAddress("DEPLOYER_EOA");

// Actions
mockToken.approve(addresses.getAddress("DEPLOYER_EOA"), 200);
mockToken.transfer(addresses.getAddress("DEPLOYER_EOA"), 500);
mockToken.transfer(addresses.getAddress("DEPLOYER_EOA"), 100);
mockToken.approve(deployer, 200);
mockToken.transfer(deployer, 500);
mockToken.transfer(deployer, 100);
mockToken.approve(addresses.getAddress("PROTOCOL_MULTISIG"), 200);
mockToken.transferFrom(
addresses.getAddress("PROTOCOL_MULTISIG"),
addresses.getAddress("DEPLOYER_EOA"),
deployer,
200
);
}
Expand Down

0 comments on commit cf48035

Please sign in to comment.