From 747f1d1f2cc9755fb8d8547a6b58cfb42c374771 Mon Sep 17 00:00:00 2001 From: DenioD <41270280+DenioD@users.noreply.github.com> Date: Wed, 5 Aug 2020 10:27:22 +0200 Subject: [PATCH] show transaction without memo --- src/controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controller.cpp b/src/controller.cpp index c3d9e70..5e9f9c3 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -1205,7 +1205,7 @@ void Controller::refreshTransactions() { QString memo; if (!it["memo"].is_null()) { memo = QString::fromStdString(it["memo"]); - + } items.push_back(TransactionItemDetail{ address, CAmount::fromqint64(it["amount"].get()), @@ -1217,7 +1217,7 @@ void Controller::refreshTransactions() { }; txdata.push_back(tx); - } + QString type;