Skip to content

Commit

Permalink
fix postOpCost
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Jul 9, 2024
1 parent 4ba9a4b commit abff5d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract TestSponsorshipPaymasterWithPremium is NexusTestBase {
assertEq(address(testArtifact.entryPoint()), ENTRYPOINT_ADDRESS);
assertEq(testArtifact.verifyingSigner(), PAYMASTER_SIGNER.addr);
assertEq(testArtifact.feeCollector(), PAYMASTER_FEE_COLLECTOR.addr);
assertEq(testArtifact.postopCost(), 0 wei);
assertEq(testArtifact.postOpCost(), 0 wei);
}

function test_RevertIf_DeployWithSignerSetToZero() external {
Expand All @@ -45,7 +45,7 @@ contract TestSponsorshipPaymasterWithPremium is NexusTestBase {
assertEq(address(bicoPaymaster.entryPoint()), ENTRYPOINT_ADDRESS);
assertEq(bicoPaymaster.verifyingSigner(), PAYMASTER_SIGNER.addr);
assertEq(bicoPaymaster.feeCollector(), PAYMASTER_FEE_COLLECTOR.addr);
assertEq(bicoPaymaster.postopCost(), 0 wei);
assertEq(bicoPaymaster.postOpCost(), 0 wei);
}

function test_OwnershipTransfer() external prankModifier(PAYMASTER_OWNER.addr) {
Expand Down

0 comments on commit abff5d2

Please sign in to comment.