| 790 | ::uiInterface.ShowProgress(title, progress, resume_possible); |
| 791 | } |
| 792 | std::unique_ptr<Handler> handleNotifications(std::shared_ptr<Notifications> notifications) override |
| 793 | { |
| 794 | return std::make_unique<NotificationsHandlerImpl>(validation_signals(), std::move(notifications)); |
| 795 | } |
| 796 | void waitForNotificationsIfTipChanged(const uint256& old_tip) override |
| 797 | { |
| 798 | if (!old_tip.IsNull() && old_tip == WITH_LOCK(::cs_main, return chainman().ActiveChain().Tip()->GetBlockHash())) return; |
no outgoing calls