From c108109102e8953f5cbab773ab092fb70236a706 Mon Sep 17 00:00:00 2001 From: rbrunner7 Date: Fri, 4 Jan 2019 16:33:02 +0100 Subject: [PATCH] simplewallet: Show new address after going multisig --- src/simplewallet/simplewallet.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 75cd31f19..c5b8bc4b0 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1165,6 +1165,7 @@ bool simple_wallet::exchange_multisig_keys_main(const std::vector & uint32_t threshold, total; m_wallet->multisig(NULL, &threshold, &total); success_msg_writer() << tr("Multisig wallet has been successfully created. Current wallet type: ") << threshold << "/" << total; + success_msg_writer() << tr("Multisig address: ") << m_wallet->get_account().get_public_address_str(m_wallet->nettype()); } } catch (const std::exception &e)