| 380 | } |
| 381 | |
| 382 | static void NotifyTransactionChanged(WalletModel *walletmodel, const Txid& hash, ChangeType status) |
| 383 | { |
| 384 | Q_UNUSED(hash); |
| 385 | Q_UNUSED(status); |
| 386 | bool invoked = QMetaObject::invokeMethod(walletmodel, "updateTransaction", Qt::QueuedConnection); |
| 387 | assert(invoked); |
| 388 | } |
| 389 | |
| 390 | static void ShowProgress(WalletModel *walletmodel, const std::string &title, int nProgress) |
| 391 | { |
no outgoing calls
no test coverage detected