Skip to content

Commit

Permalink
Fix pointer build error
Browse files Browse the repository at this point in the history
  • Loading branch information
miltonf committed Apr 15, 2019
1 parent 833147d commit 7c5adb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simplewallet/simplewallet.cpp
Expand Up @@ -3813,7 +3813,7 @@ bool simple_wallet::set_daemon(const std::vector<std::string>& args)
}
catch (const std::exception &e) { }
}
success_msg_writer() << boost::format("Daemon set to %s, %s") % daemon_url % (*m_trusted_daemon ? tr("trusted") : tr("untrusted"));
success_msg_writer() << boost::format("Daemon set to %s, %s") % daemon_url % (m_trusted_daemon ? tr("trusted") : tr("untrusted"));
} else {
fail_msg_writer() << tr("This does not seem to be a valid daemon URL.");
}
Expand Down

0 comments on commit 7c5adb9

Please sign in to comment.