diff options
author | Dusan Klinec <dusan.klinec@gmail.com> | 2019-02-20 02:00:14 +0100 |
---|---|---|
committer | Dusan Klinec <dusan.klinec@gmail.com> | 2019-02-20 02:00:14 +0100 |
commit | 75e5aafdcb6834f940b71a929e64fc59597bd344 (patch) | |
tree | bd29412b735f9226f6d8fa3de86d424ce6cea084 /src | |
parent | Merge pull request #4988 (diff) | |
download | monero-75e5aafdcb6834f940b71a929e64fc59597bd344.tar.xz |
device/trezor: dummy payment ID fix
Diffstat (limited to 'src')
-rw-r--r-- | src/device_trezor/device_trezor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device_trezor/device_trezor.cpp b/src/device_trezor/device_trezor.cpp index 8868fb995..3f0882c8d 100644 --- a/src/device_trezor/device_trezor.cpp +++ b/src/device_trezor/device_trezor.cpp @@ -393,7 +393,7 @@ namespace trezor { const bool nonce_required = tdata.tsx_data.has_payment_id() && tdata.tsx_data.payment_id().size() > 0; const bool has_nonce = cryptonote::find_tx_extra_field_by_type(tx_extra_fields, nonce); - CHECK_AND_ASSERT_THROW_MES(has_nonce == nonce_required, "Transaction nonce presence inconsistent"); + CHECK_AND_ASSERT_THROW_MES(has_nonce || !nonce_required, "Transaction nonce not present"); if (nonce_required){ const std::string & payment_id = tdata.tsx_data.payment_id(); |