diff options
| author | selsta <selsta@sent.at> | 2021-05-08 16:45:10 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-05-08 16:45:45 +0200 |
| commit | c8c8736cf3220b86df0999c8e61a2b6148c086f7 (patch) | |
| tree | 16927e9bfba956f9b0a776021332a25b5ac19d3f /js | |
| parent | 426dc3fa4764b8ae31802d3894bb3b382e10be02 (diff) | |
| download | monzero-gui-c8c8736cf3220b86df0999c8e61a2b6148c086f7.tar.gz monzero-gui-c8c8736cf3220b86df0999c8e61a2b6148c086f7.tar.xz monzero-gui-c8c8736cf3220b86df0999c8e61a2b6148c086f7.zip | |
js: fix getApproximateBlockchainHeight (testnet)
Diffstat (limited to 'js')
| -rw-r--r-- | js/Wizard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Wizard.js b/js/Wizard.js index d7f661a1..61ac105d 100644 --- a/js/Wizard.js +++ b/js/Wizard.js @@ -155,7 +155,7 @@ function getApproximateBlockchainHeight(_date, _nettype){ if(_nettype == "Testnet"){ // testnet got some huge rollbacks, so the estimation is way off - var approximateTestnetRolledBackBlocks = 303967; + var approximateTestnetRolledBackBlocks = 342100; if(approxBlockchainHeight > approximateTestnetRolledBackBlocks) approxBlockchainHeight -= approximateTestnetRolledBackBlocks } |
