Skip to content

Commit

Permalink
fix: serialile populated transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
kiriyaga committed Aug 25, 2024
1 parent 9cfdd66 commit 50556e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class HardhatZksyncSigner extends Signer {
tx.customData = tx.customData || {};
tx.customData.customSignature = await (this.accountWallet as EIP712Signer).sign(transaction);

const txBytes = serialize(transaction);
const txBytes = serialize(tx);
return await this.provider.sendTransaction(txBytes);
}

Expand Down

0 comments on commit 50556e3

Please sign in to comment.