simplewallet: hide start_mining behind --trusted-daemon

because it leaks your standard address
This commit is contained in:
moneromooo-monero 2015-10-12 00:04:57 +01:00
parent 0fdc75b054
commit 0f6d3aa9c7
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

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