Skip to content

Commit 6372a46

Browse files
committedFeb 13, 2023
Allow null type in transaction receipt for legacy type 0 networks (#3459).
1 parent 2ba4a17 commit 6372a46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src.ts/providers/format.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const _formatTransactionReceipt = object({
168168
cumulativeGasUsed: getBigInt,
169169
effectiveGasPrice: allowNull(getBigInt),
170170
status: allowNull(getNumber),
171-
type: getNumber
171+
type: allowNull(getNumber, 0)
172172
}, {
173173
effectiveGasPrice: [ "gasPrice" ],
174174
hash: [ "transactionHash" ],

0 commit comments

Comments
 (0)
Please sign in to comment.