| 265 | return MakeHandler(::uiInterface.NotifyAlertChanged.connect(fn)); |
| 266 | } |
| 267 | std::unique_ptr<Handler> handleBannedListChanged(BannedListChangedFn fn) override |
| 268 | { |
| 269 | return MakeHandler(::uiInterface.BannedListChanged.connect(fn)); |
| 270 | } |
| 271 | std::unique_ptr<Handler> handleNotifyBlockTip(NotifyBlockTipFn fn) override |
| 272 | { |
| 273 | return MakeHandler(::uiInterface.NotifyBlockTip.connect([fn](bool initial_download, const CBlockIndex* block) { |
no test coverage detected