Merge pull request #5042

c1081091 simplewallet: Show new address after going multisig (rbrunner7)
pull/200/head
Riccardo Spagni 5 years ago
commit 6285c43ffc
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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)

Loading…
Cancel
Save