From f9a2b5279d6243fb1fc0f585516c6c79a8301962 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 18 Mar 2017 18:07:54 +0000 Subject: [PATCH] simplewallet: allow setting tx priority in watch wallets Those can create unsigned transactions --- src/simplewallet/simplewallet.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index f5763648..a41c46ab 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -482,11 +482,6 @@ bool simple_wallet::set_default_mixin(const std::vector &args/* = s bool simple_wallet::set_default_priority(const std::vector &args/* = std::vector()*/) { int priority = 0; - if (m_wallet->watch_only()) - { - fail_msg_writer() << tr("wallet is watch-only and cannot transfer"); - return true; - } try { if (strchr(args[1].c_str(), '-'))