aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2017-01-08 21:05:00 -0600
committerluigi1111 <luigi1111w@gmail.com>2017-01-08 21:05:00 -0600
commit5ae00f0ff51c41789974d8bb8ed434b21762c74c (patch)
tree7d4d28ac17821ec2152838dfeec1b53486bfa519 /src/simplewallet
parentMerge pull request #1542 (diff)
downloadmonero-5ae00f0ff51c41789974d8bb8ed434b21762c74c.tar.xz
add msg for donate
#1498
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 088d5e2ac..afd263731 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -2676,6 +2676,7 @@ bool simple_wallet::donate(const std::vector<std::string> &args_)
local_args.push_back(amount_str);
if (!payment_id_str.empty())
local_args.push_back(payment_id_str);
+ message_writer() << tr("Donating ") << amount_str << " XMR to The Monero Project (donate.getmonero.org/44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A).";
transfer_new(local_args);
return true;
}