Skip to content

Commit

Permalink
Fixed transaction serialization with explicit null type (#1628).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 22, 2021
1 parent e615e51 commit 8277f5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/transactions/src.ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const transactionFields = [
];

const allowedTransactionKeys: { [ key: string ]: boolean } = {
chainId: true, data: true, gasLimit: true, gasPrice:true, nonce: true, to: true, value: true
chainId: true, data: true, gasLimit: true, gasPrice:true, nonce: true, to: true, type: true, value: true
}

export function computeAddress(key: BytesLike | string): string {
Expand Down

0 comments on commit 8277f5a

Please sign in to comment.