diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-01-13 14:35:33 -0500 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-01-13 14:35:34 -0500 |
commit | 433adee594c5be441e996527c5a4cb48c168e385 (patch) | |
tree | cff2f6f67ceb695c89a8b83c675d8e73257da425 /src/simplewallet | |
parent | Merge pull request #1543 (diff) | |
parent | add msg for donate (diff) | |
download | monero-433adee594c5be441e996527c5a4cb48c168e385.tar.xz |
Merge pull request #1545
5ae00f0f add msg for donate (luigi1111)
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 54c717503..29368ea07 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2812,6 +2812,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; } |