jsre: hotfix web3 for the console eth.syncing formatting

This commit is contained in:
Péter Szilágyi 2016-05-09 11:59:43 +03:00
parent b6135a72dd
commit 1d42061e2c
1 changed files with 6 additions and 1 deletions

View File

@ -3911,7 +3911,12 @@ var outputSyncingFormatter = function(result) {
result.startingBlock = utils.toDecimal(result.startingBlock);
result.currentBlock = utils.toDecimal(result.currentBlock);
result.highestBlock = utils.toDecimal(result.highestBlock);
if (result.knownStates !== undefined) {
result.knownStates = utils.toDecimal(result.knownStates);
}
if (result.pulledStates !== undefined) {
result.pulledStates = utils.toDecimal(result.pulledStates);
}
return result;
};