| 687 | hash(_hash), status(_status), showTransaction(_showTransaction) {} |
| 688 | |
| 689 | void invoke(QObject *ttm) |
| 690 | { |
| 691 | QString strHash = QString::fromStdString(hash.GetHex()); |
| 692 | qDebug() << "NotifyTransactionChanged: " + strHash + " status= " + QString::number(status); |
| 693 | QMetaObject::invokeMethod(ttm, "updateTransaction", Qt::QueuedConnection, |
| 694 | Q_ARG(QString, strHash), |
| 695 | Q_ARG(int, status), |
| 696 | Q_ARG(bool, showTransaction)); |
| 697 | } |
| 698 | private: |
| 699 | uint256 hash; |
| 700 | ChangeType status; |
no test coverage detected