| 245 | } |
| 246 | |
| 247 | void TransactionTableModel::updateTransaction(const QString &hash, int status, bool showTransaction) |
| 248 | { |
| 249 | uint256 updated; |
| 250 | updated.SetHex(hash.toStdString()); |
| 251 | |
| 252 | priv->updateWallet(walletModel->wallet(), updated, status, showTransaction); |
| 253 | } |
| 254 | |
| 255 | void TransactionTableModel::updateConfirmations() |
| 256 | { |
nothing calls this directly
no test coverage detected