| 423 | } |
| 424 | |
| 425 | static void NotifyTransactionChanged(WalletModel *walletmodel, const uint256 &hash, ChangeType status) |
| 426 | { |
| 427 | Q_UNUSED(hash); |
| 428 | Q_UNUSED(status); |
| 429 | bool invoked = QMetaObject::invokeMethod(walletmodel, "updateTransaction", Qt::QueuedConnection); |
| 430 | assert(invoked); |
| 431 | } |
| 432 | |
| 433 | static void ShowProgress(WalletModel *walletmodel, const std::string &title, int nProgress) |
| 434 | { |
no outgoing calls
no test coverage detected