From d51b9edcd44155eb59f457dc5ecb97147c0c9d9f Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Wed, 10 Apr 2019 11:14:38 -0400 Subject: [PATCH] f'GUI: Display label rather than address on popups' --- src/qt/bitcoingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index a54a3eaab8..fc7761af7d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -1012,7 +1012,7 @@ void BitcoinGUI::incomingTransaction(const QString& date, const QString& assetam { // On new transaction, make an info balloon QString msg = tr("Date: %1\n").arg(date) + - tr("Amount: %1\n").arg(assetamount_str) + + tr("Amount: %1\n").arg(assetamount_str); if (m_node.getWallets().size() > 1 && !walletName.isEmpty()) { msg += tr("Wallet: %1\n").arg(walletName); }