| 174 | return Params().GenesisBlock().GetBlockTime(); // Genesis block's time of current network |
| 175 | } |
| 176 | double getVerificationProgress() override |
| 177 | { |
| 178 | const CBlockIndex* tip; |
| 179 | { |
| 180 | LOCK(::cs_main); |
| 181 | tip = ::chainActive.Tip(); |
| 182 | } |
| 183 | return GuessVerificationProgress(Params().TxData(), tip); |
| 184 | } |
| 185 | bool isInitialBlockDownload() override { return IsInitialBlockDownload(); } |
| 186 | bool getReindex() override { return ::fReindex; } |
| 187 | bool getImporting() override { return ::fImporting; } |
no test coverage detected