| 505 | const std::string& purpose, ChangeType status) { fn(address, label, is_mine, purpose, status); })); |
| 506 | } |
| 507 | std::unique_ptr<Handler> handleTransactionChanged(TransactionChangedFn fn) override |
| 508 | { |
| 509 | return MakeHandler(m_wallet->NotifyTransactionChanged.connect( |
| 510 | [fn](const uint256& txid, ChangeType status) { fn(txid, status); })); |
| 511 | } |
| 512 | std::unique_ptr<Handler> handleWatchOnlyChanged(WatchOnlyChangedFn fn) override |
| 513 | { |
| 514 | return MakeHandler(m_wallet->NotifyWatchonlyChanged.connect(fn)); |
no test coverage detected