diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-01-16 21:42:17 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-01-16 21:42:17 +0200 |
commit | 6285c43ffc4ca886bad78e2fa35fe8c977c8a5e9 (patch) | |
tree | 939525192e9efa29bed9e35f124ff8d70db919da /src/simplewallet | |
parent | Merge pull request #5036 (diff) | |
parent | simplewallet: Show new address after going multisig (diff) | |
download | monero-6285c43ffc4ca886bad78e2fa35fe8c977c8a5e9.tar.xz |
Merge pull request #5042
c1081091 simplewallet: Show new address after going multisig (rbrunner7)
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 835abf569..e23fb3836 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1166,6 +1166,7 @@ bool simple_wallet::exchange_multisig_keys_main(const std::vector<std::string> & 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) |