Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Oct 27, 2024
1 parent 8279e9b commit 5b28b10
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/unit/concrete/TestTokenPaymaster.Base.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ contract TestTokenPaymasterBase is TestBase {
_toSingletonArray(address(usdc)),
_toSingletonArray(IOracle(address(tokenOracle))),
_toSingletonArray(address(usdc)),
_toSingletonArray(uint24(500))
_toSingletonArray(uint24(500)) // from here: https://basescan.org/address/0xd0b53D9277642d899DF5C87A3966A349A798F224#readContract
);
}

Expand All @@ -59,8 +59,8 @@ contract TestTokenPaymasterBase is TestBase {
WRAPPED_NATIVE_ADDRESS,
_toSingletonArray(address(usdc)),
_toSingletonArray(IOracle(address(tokenOracle))),
new address[](0),
new uint24[](0)
_toSingletonArray(address(usdc)),
_toSingletonArray(uint24(500)) // from here: https://basescan.org/address/0xd0b53D9277642d899DF5C87A3966A349A798F224#readContract
);

assertEq(testArtifact.owner(), PAYMASTER_OWNER.addr);
Expand Down Expand Up @@ -125,4 +125,6 @@ contract TestTokenPaymasterBase is TestBase {
100000,
this.getMaxPenalty(ops[0]));
}

// Todo: write a test to make a swap.
}

0 comments on commit 5b28b10

Please sign in to comment.