From 8f2509305a8f98f77ace145d78523f69e18317aa Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Mon, 22 Jan 2024 14:02:06 +0800 Subject: [PATCH] internal/jsre/deps: fix web3 resolver --- internal/jsre/deps/web3.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index f23c65584c..6ccf09b1cc 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3961,6 +3961,8 @@ var outputSyncingFormatter = function(result) { result.healedBytecodeBytes = utils.toDecimal(result.healedBytecodeBytes); result.healingTrienodes = utils.toDecimal(result.healingTrienodes); result.healingBytecode = utils.toDecimal(result.healingBytecode); + result.txIndexFinishedBlocks = utils.toDecimal(result.txIndexFinishedBlocks); + result.txIndexRemainingBlocks = utils.toDecimal(result.txIndexRemainingBlocks); return result; };