Browse Source

Fix for memo not showing in GUI for sender

pull/112/head
fekt 2 years ago
parent
commit
ab17a1012e
  1. 2
      src/senttxstore.cpp

2
src/senttxstore.cpp

@ -46,7 +46,7 @@ QList<TransactionItem> SentTxStore::readSentTxFile() {
sentTx["address"].toString(),
sentTx["txid"].toString(),
sentTx["amount"].toDouble() + sentTx["fee"].toDouble(),
0, sentTx["from"].toString(), ""};
0, sentTx["from"].toString(), sentTx["memo"].toString()};
items.push_back(t);
}

Loading…
Cancel
Save