Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeexcoin committed Feb 5, 2025
1 parent e9864c7 commit f0fad86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/agw-client/test/src/actions/signTransaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ const transaction: ZksyncTransactionRequestEIP712 = {
from: '0x0000000000000000000000000000000000000000',
paymaster: '0x5407B5040dec3D339A9247f3654E59EEccbb6391',
paymasterInput: '0x',
data: '0x',
};

const transactionWithBigIntValues = {
Expand Down Expand Up @@ -101,6 +100,7 @@ test('with useSignerAddress false', async () => {
{
chainId: anvilAbstractTestnet.chain.id,
...transaction,
data: '0x',
from: address.smartAccountAddress,
customSignature: signature,
type: 'eip712' as any,
Expand Down Expand Up @@ -131,6 +131,7 @@ test('with useSignerAddress true', async () => {
{
chainId: anvilAbstractTestnet.chain.id,
...transaction,
data: '0x',
from: address.signerAddress,
customSignature: signature,
type: 'eip712' as any,
Expand Down

0 comments on commit f0fad86

Please sign in to comment.