go rpc doesnt expose the block difficulty currently

pull/5/head
Joris Bontje 10 years ago
parent 7632de1f40
commit 9d3434ef71
  1. 2
      models/node.js

@ -49,7 +49,7 @@ Node.prototype.update = function()
if(this.info.stats.peers != null) { if(this.info.stats.peers != null) {
this.info.stats.block = eth.block(parseInt(eth.number)); this.info.stats.block = eth.block(parseInt(eth.number));
if(this.info.stats.block.hash != '?'){ if(this.info.stats.block.hash != '?' && typeof this.info.stats.block.difficulty !== 'undefined'){
this.info.stats.block.difficulty = this.web3.toDecimal(this.info.stats.block.difficulty); this.info.stats.block.difficulty = this.web3.toDecimal(this.info.stats.block.difficulty);
} }
this.info.stats.mining = eth.mining; this.info.stats.mining = eth.mining;

Loading…
Cancel
Save