simplewallet: hide start_mining behind --trusted-daemon

because it leaks your standard address
pull/429/head
moneromooo-monero 9 years ago
parent 0fdc75b054
commit 0f6d3aa9c7
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -985,6 +985,12 @@ bool simple_wallet::save_watch_only(const std::vector<std::string> &args/* = std
//----------------------------------------------------------------------------------------------------
bool simple_wallet::start_mining(const std::vector<std::string>& args)
{
if (!m_trusted_daemon)
{
fail_msg_writer() << tr("This command assume a trusted daemon. Enable with --trusted-daemon");
return true;
}
if (!try_connect_to_daemon())
return true;

Loading…
Cancel
Save