| 335 | return chainman().GetParams().GenesisBlock().GetBlockTime(); // Genesis block's time of current network |
| 336 | } |
| 337 | double getVerificationProgress() override |
| 338 | { |
| 339 | LOCK(chainman().GetMutex()); |
| 340 | return chainman().GuessVerificationProgress(chainman().ActiveTip()); |
| 341 | } |
| 342 | bool isInitialBlockDownload() override |
| 343 | { |
| 344 | return chainman().IsInitialBlockDownload(); |
nothing calls this directly
no test coverage detected