mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Merge pull request #3846
ef56194
Wizard: fix stagenet approx blockheight (selsta)
This commit is contained in:
commit
3031e7c37f
1 changed files with 2 additions and 2 deletions
|
@ -164,9 +164,9 @@ function getApproximateBlockchainHeight(_date, _nettype){
|
|||
secondsPerBlock = secondsPerBlockV2;
|
||||
}
|
||||
|
||||
if(_nettype == "Testnet"){
|
||||
if(_nettype == "Testnet" || _nettype == "Stagenet"){
|
||||
// testnet got some huge rollbacks, so the estimation is way off
|
||||
var approximateTestnetRolledBackBlocks = 342100;
|
||||
var approximateTestnetRolledBackBlocks = _nettype == "Testnet" ? 342100 : 30000;
|
||||
if(approxBlockchainHeight > approximateTestnetRolledBackBlocks)
|
||||
approxBlockchainHeight -= approximateTestnetRolledBackBlocks
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue