diff options
author | cslashm <cslashm@gmail.com> | 2019-03-21 17:22:43 +0100 |
---|---|---|
committer | cslashm <cslashm@gmail.com> | 2019-03-28 18:26:15 +0100 |
commit | 7c44091541ece919de11754a62c3070f7c2ad948 (patch) | |
tree | 97d4742462b3ee84c511a41baa4a660cccd31ec3 /src/simplewallet/simplewallet.cpp | |
parent | Add support for V11 protocol with BulletProofV2 and short amount. (diff) | |
download | monero-7c44091541ece919de11754a62c3070f7c2ad948.tar.xz |
Add get_tx_proof support, needed for new sanity check
Enhance debug info
Diffstat (limited to '')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index d5835609a..ff7a72b7e 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -6871,11 +6871,6 @@ bool simple_wallet::set_tx_key(const std::vector<std::string> &args_) //---------------------------------------------------------------------------------------------------- bool simple_wallet::get_tx_proof(const std::vector<std::string> &args) { - if (m_wallet->key_on_device() && m_wallet->get_account().get_device().get_type() != hw::device::TREZOR) - { - fail_msg_writer() << tr("command not supported by HW wallet"); - return true; - } if (args.size() != 2 && args.size() != 3) { PRINT_USAGE(USAGE_GET_TX_PROOF); |