aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authorrbrunner7 <rbrunner@dreamshare.ch>2019-01-04 16:33:02 +0100
committerrbrunner7 <rbrunner@dreamshare.ch>2019-01-04 16:33:02 +0100
commitc108109102e8953f5cbab773ab092fb70236a706 (patch)
tree48314f4b11bbbffea4f4ee392203cb88fe5a35dd /src/simplewallet
parentMerge pull request #4960 (diff)
downloadmonero-c108109102e8953f5cbab773ab092fb70236a706.tar.xz
simplewallet: Show new address after going multisig
Diffstat (limited to 'src/simplewallet')
-rw-r--r--src/simplewallet/simplewallet.cpp1
1 files changed, 1 insertions, 0 deletions
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<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)