Browse Source

Merge pull request #258 from QuickMythril/fix-time-to-level

Fix "Next Level" calculations
pull/260/head
AlphaX-Projects 7 months ago committed by GitHub
parent
commit
09c3207bf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  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() {
let countDays = ((this._blocksNeed() - (this.addressInfo.blocksMinted + this.addressInfo.blocksMintedAdjustment)) / this._timeCalc()).toFixed(2)
let countString = (countDays).toString()
let nextBatch = 1000 - (this.nodeInfo.height % 1000)
let countBlocks = this._blocksNeed() - (this.addressInfo.blocksMinted + this.addressInfo.blocksMintedAdjustment)
countBlocks = +countBlocks + 1000
let countBlocksActual = countBlocks + nextBatch - (countBlocks % 1000)
let countDays = (countBlocksActual / this._timeCalc()).toFixed(2)
let countString = countDays.toString()
return "" + countString
}
_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)
countBlocks = +countBlocks + 1000
let countBlocksActual = countBlocks + nextBatch - (countBlocks % 1000)
let countBlocksString = countBlocksActual.toString()
return "" + countBlocksString
}

Loading…
Cancel
Save