MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / handleNotifications

Method handleNotifications

src/node/interfaces.cpp:792–795  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers 3

AttachChainMethod · 0.80
WalletTestingSetupMethod · 0.80
WalletBalanceFunction · 0.80

Calls

no outgoing calls

Tested by 1

WalletTestingSetupMethod · 0.64