From ab17a1012ebe8e5aab078934a4e7cabec0560893 Mon Sep 17 00:00:00 2001 From: fekt Date: Sat, 8 Oct 2022 11:05:22 -0400 Subject: [PATCH] Fix for memo not showing in GUI for sender --- src/senttxstore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/senttxstore.cpp b/src/senttxstore.cpp index 9b623ee..75cb10a 100644 --- a/src/senttxstore.cpp +++ b/src/senttxstore.cpp @@ -46,7 +46,7 @@ QList 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); }