MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / invoke

Method invoke

src/qt/transactiontablemodel.cpp:689–697  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }
698private:
699 uint256 hash;
700 ChangeType status;

Callers 2

NotifyTransactionChangedFunction · 0.45
ShowProgressFunction · 0.45

Calls 1

GetHexMethod · 0.45

Tested by

no test coverage detected