Skip to content

Commit

Permalink
Update test/unit/fuzz/TestFuzz_TestSponsorshipPaymaster.t.sol
Browse files Browse the repository at this point in the history
Co-authored-by: filmakarov <[email protected]>
  • Loading branch information
livingrockrises and filmakarov authored Oct 17, 2024
1 parent c8fa3be commit 105c2ce
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/unit/fuzz/TestFuzz_TestSponsorshipPaymaster.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,14 @@ contract TestFuzz_SponsorshipPaymasterWithPriceMarkup is TestBase {
view
{
PackedUserOperation memory userOp = buildUserOpWithCalldata(ALICE, "", address(VALIDATOR_MODULE));
PaymasterData memory pmData = PaymasterData(3e6, 3e6, paymasterId, validUntil, validAfter, priceMarkup);
PaymasterData memory pmData = PaymasterData({
validationGasLimit: 3e6,
postOpGasLimit: 3e6,
paymasterId: paymasterId,
validUntil: validUntil,
validAfter: validAfter,
priceMarkup: priceMarkup
});
(bytes memory paymasterAndData, bytes memory signature) =
generateAndSignPaymasterData(userOp, PAYMASTER_SIGNER, bicoPaymaster, pmData);

Expand Down

0 comments on commit 105c2ce

Please sign in to comment.