Merge pull request #5717 from salisbury-espinosa/patch-1

Update debug_traceTransaction/tracer.js
pull/5719/head
Victor Baranov 2 years ago committed by GitHub
commit 04d2b63913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      apps/ethereum_jsonrpc/priv/js/ethereum_jsonrpc/geth/debug_traceTransaction/tracer.js

@ -442,7 +442,7 @@
},
putGas(call) {
const gasBigInt = call.gasBigInt;
let gasBigInt = call.gasBigInt;
delete call.gasBigInt;
if (gasBigInt === undefined) {
@ -453,7 +453,7 @@
},
putGasUsed(call) {
const gasUsedBigInt = call.gasUsedBigInt;
let gasUsedBigInt = call.gasUsedBigInt;
delete call.gasUsedBigInt;
if (gasUsedBigInt === undefined) {

Loading…
Cancel
Save