Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit bced55e

Browse files
authored
Merge pull request #381 from autonomoussoftware/fix-failed-tx-parsing
Fix failed transaction parsing
2 parents 62941f4 + d156f56 commit bced55e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/main/plugins/ethWallet/transactionParser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function transactionParser ({ transaction, receipt, walletId }) {
2020
}
2121

2222
meta.contractCallFailed = receipt &&
23-
(receipt.status === 0 || // byzantium fork
23+
(receipt.status === false || // byzantium fork
2424
(input !== '0x' && gas === receipt.gasUsed && !receipt.logs.length))
2525

2626
if (meta.ours) {

0 commit comments

Comments
 (0)