| 264 | }; |
| 265 | |
| 266 | TokenTransactionTableModel::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 | |
| 281 | TokenTransactionTableModel::~TokenTransactionTableModel() |
| 282 | { |
nothing calls this directly
no test coverage detected