Browse Source

Fix "Next Level" calculations

master
QuickMythril 7 months ago
parent
commit
800557f600
  1. 14
      plugins/plugins/core/minting/minting-info.src.js

14
plugins/plugins/core/minting/minting-info.src.js

@ -525,13 +525,21 @@ class MintingInfo extends LitElement {
} }
_levelUpDays() { _levelUpDays() {
let countDays = ((this._blocksNeed() - (this.addressInfo.blocksMinted + this.addressInfo.blocksMintedAdjustment)) / this._timeCalc()).toFixed(2) let nextBatch = 1000 - (this.nodeInfo.height % 1000)
let countString = (countDays).toString() let countBlocks = this._blocksNeed() - (this.addressInfo.blocksMinted + this.addressInfo.blocksMintedAdjustment)
let countBlocksActual = countBlocks + 1000 + nextBatch - (countBlocks % 1000)
countBlocksActual += +countBlocksActual < 0 ? 1000 : 0
let countDays = (countBlocksActual / this._timeCalc()).toFixed(2)
let countString = countDays.toString()
return "" + countString return "" + countString
} }
_levelUpBlocks() { _levelUpBlocks() {
let countBlocksString = (this._blocksNeed() - (this.addressInfo.blocksMinted + this.addressInfo.blocksMintedAdjustment)).toString() let nextBatch = 1000 - (this.nodeInfo.height % 1000)
let countBlocks = this._blocksNeed() - (this.addressInfo.blocksMinted + this.addressInfo.blocksMintedAdjustment)
let countBlocksActual = countBlocks + 1000 + nextBatch - (countBlocks % 1000)
countBlocksActual += +countBlocksActual < 0 ? 1000 : 0
let countBlocksString = countBlocksActual.toString()
return "" + countBlocksString return "" + countBlocksString
} }

Loading…
Cancel
Save