Skip to content

Commit a59dddf

Browse files
committed
update test
1 parent 2ae091a commit a59dddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/CoinbaseSmartWallet/ValidateUserOp.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ contract TestValidateUserOp is SmartWalletTestBase {
105105
bytes[] memory calls = new bytes[](1);
106106
calls[0] = abi.encodeWithSelector(UUPSUpgradeable.upgradeToAndCall.selector, emptyImplementation, "");
107107

108-
UserOperation memory userOp;
108+
PackedUserOperation memory userOp;
109109
userOp.nonce = account.REPLAYABLE_NONCE_KEY() << 64;
110110
userOp.callData = abi.encodeWithSelector(CoinbaseSmartWallet.executeWithoutChainIdValidation.selector, calls);
111111
userOp.signature =
@@ -125,7 +125,7 @@ contract TestValidateUserOp is SmartWalletTestBase {
125125
bytes[] memory calls = new bytes[](1);
126126
calls[0] = abi.encodeWithSelector(UUPSUpgradeable.upgradeToAndCall.selector, validImplementation, "");
127127

128-
UserOperation memory userOp;
128+
PackedUserOperation memory userOp;
129129
userOp.nonce = account.REPLAYABLE_NONCE_KEY() << 64;
130130
userOp.callData = abi.encodeWithSelector(CoinbaseSmartWallet.executeWithoutChainIdValidation.selector, calls);
131131
userOp.signature =

0 commit comments

Comments
 (0)