| 274 | } |
| 275 | |
| 276 | void TransactionTableModel::updateTransaction(const QString &hash, int status, bool showTransaction) |
| 277 | { |
| 278 | Txid updated = Txid::FromHex(hash.toStdString()).value(); |
| 279 | |
| 280 | priv->updateWallet(walletModel->wallet(), updated, status, showTransaction); |
| 281 | } |
| 282 | |
| 283 | void TransactionTableModel::updateConfirmations() |
| 284 | { |
nothing calls this directly
no test coverage detected