From c765f9512c3dd056abe2d2fc36db237577f26aa0 Mon Sep 17 00:00:00 2001 From: Matt Smith Date: Wed, 20 Dec 2017 17:12:22 +0000 Subject: [PATCH] simplewallet: disable donations on testnet --- src/simplewallet/simplewallet.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 64e665fb3..6116c71de 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -4494,6 +4494,12 @@ bool simple_wallet::sweep_below(const std::vector &args_) //---------------------------------------------------------------------------------------------------- bool simple_wallet::donate(const std::vector &args_) { + if(m_wallet->testnet()) + { + fail_msg_writer() << tr("donations are not enabled on the testnet"); + return true; + } + std::vector local_args = args_; if(local_args.empty() || local_args.size() > 5) {