Browse Source

Fix

pull/4/head
jl777 6 years ago
parent
commit
cc39397316
  1. 2
      src/rpcblockchain.cpp

2
src/rpcblockchain.cpp

@ -1300,7 +1300,7 @@ UniValue getblockchaininfo(const UniValue& params, bool fHelp)
LOCK(cs_main);
double progress;
if ( ASSETCHAINS_SYMBOL[0] == 0 ) {
progress = Checkpoints::GuessVerificationProgress(Params.Checkpoints(), chainActive.LastTip());
progress = Checkpoints::GuessVerificationProgress(Params().Checkpoints(), chainActive.LastTip());
} else {
int32_t longestchain = komodo_longestchain();
progress = (longestchain > 0 ) ? (double) chainActive.Height() / longestchain : 1.0;

Loading…
Cancel
Save