From fdc365e9cc6ade0291eae41cb969748935c771ef Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Thu, 22 Aug 2019 15:25:42 -0400 Subject: [PATCH] Fix QT transaction blinding details being committed to wallet --- src/interfaces/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/wallet.cpp b/src/interfaces/wallet.cpp index 6f3d7d2952..10490d6067 100644 --- a/src/interfaces/wallet.cpp +++ b/src/interfaces/wallet.cpp @@ -276,7 +276,7 @@ public: } } if (!m_wallet->CreateTransaction(*locked_chain, recipients, pending->m_tx, pending->m_keys, fee, change_pos, - fail_reason, coin_control, sign)) { + fail_reason, coin_control, sign, gArgs.GetBoolArg("-blindedaddresses", g_con_elementsmode) ? &pending->m_blind_details : nullptr)) { return {}; } out_amounts = pending->m_blind_details.o_amounts;