fixed gasPrice

This commit is contained in:
cubedro 2015-04-06 02:43:34 +03:00
parent e773225329
commit 83a3edfdbb
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ Node.prototype.getStats = function()
}
this.stats.mining = web3.eth.mining;
this.stats.gasPrice = web3.eth.gasPrice.toString(10);
this.stats.gasPrice = web3.toBigNumber(web3.eth.gasPrice).toString(10);
this.stats.listening = web3.net.listening;
}