diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-13 11:32:44 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-21 14:46:29 +0000 |
commit | adf6d7730f3389649ea0e79d2968e04fd3700dff (patch) | |
tree | 6e1af06a30d0e6e9eda6869da3a81b2e16ca9de3 /src/device_trezor/trezor/protocol.hpp | |
parent | Merge pull request #5283 (diff) | |
download | monero-adf6d7730f3389649ea0e79d2968e04fd3700dff.tar.xz |
wallet: fix offline signing calling a daemon RPC
Diffstat (limited to 'src/device_trezor/trezor/protocol.hpp')
-rw-r--r-- | src/device_trezor/trezor/protocol.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device_trezor/trezor/protocol.hpp b/src/device_trezor/trezor/protocol.hpp index 98ca52565..f58bf1039 100644 --- a/src/device_trezor/trezor/protocol.hpp +++ b/src/device_trezor/trezor/protocol.hpp @@ -281,7 +281,7 @@ namespace tx { } bool is_req_bulletproof() const { - return m_ct.tx_data.use_bulletproofs; + return m_ct.tx_data.rct_config.range_proof_type != rct::RangeProofBorromean; } bool is_bulletproof() const { |