diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index fa3eb61..ca06e36 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -8306,6 +8306,12 @@ bool simple_wallet::stake(const std::vector &args_) return true; } + if(m_wallet->multisig()) + { + fail_msg_writer() << tr("This is a multisig wallet, staking is not currently supported"); + return true; + } + std::vector local_args; local_args.push_back(m_wallet->get_subaddress_as_str({m_current_subaddress_account,0})); local_args.insert(local_args.end(), args_.begin(), args_.end());