We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84acfa1 commit 1947519Copy full SHA for 1947519
src/rpc/misc.cpp
@@ -138,12 +138,6 @@ UniValue getinfo(const JSONRPCRequest& request)
138
obj.pushKV("difficulty", (double)GetDifficulty());
139
obj.pushKV("testnet", Params().NetworkID() == CBaseChainParams::TESTNET);
140
141
- // During inital block verification chainActive.Tip() might be not yet initialized
142
- if (chainActive.Tip() == NULL) {
143
- obj.pushKV("status", "Blockchain information not yet available");
144
- return obj;
145
- }
146
-
147
FlushStateToDisk();
148
obj.pushKV("moneysupply",ValueFromAmount(pcoinsTip->GetTotalAmount()));
149
UniValue zpivObj(UniValue::VOBJ);
0 commit comments