MCPcopy Create free account
hub / github.com/LUX-Core/lux / TokenTransactionTableModel

Method TokenTransactionTableModel

src/qt/tokentransactiontablemodel.cpp:266–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264};
265
266TokenTransactionTableModel::TokenTransactionTableModel(const PlatformStyle* platformStyle, CWallet* wallet, WalletModel *parent):
267 QAbstractTableModel(parent),
268 wallet(wallet),
269 walletModel(parent),
270 priv(new TokenTransactionTablePriv(wallet, this)),
271 fProcessingQueuedTransactions(false),
272 platformStyle(platformStyle)
273
274{
275 columns << QString() << tr("Date") << tr("Type") << tr("Label") << tr("Name") << tr("Amount");
276 priv->refreshWallet();
277
278 subscribeToCoreSignals();
279}
280
281TokenTransactionTableModel::~TokenTransactionTableModel()
282{

Callers

nothing calls this directly

Calls 1

refreshWalletMethod · 0.45

Tested by

no test coverage detected