We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6135a7 + 1d42061 commit dc7f202Copy full SHA for dc7f202
jsre/ethereum_js.go
@@ -3911,7 +3911,12 @@ var outputSyncingFormatter = function(result) {
3911
result.startingBlock = utils.toDecimal(result.startingBlock);
3912
result.currentBlock = utils.toDecimal(result.currentBlock);
3913
result.highestBlock = utils.toDecimal(result.highestBlock);
3914
-
+ if (result.knownStates !== undefined) {
3915
+ result.knownStates = utils.toDecimal(result.knownStates);
3916
+ }
3917
+ if (result.pulledStates !== undefined) {
3918
+ result.pulledStates = utils.toDecimal(result.pulledStates);
3919
3920
return result;
3921
};
3922
0 commit comments