diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:20:05 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:20:05 -0500 |
| commit | 443f5c6bdafbd749534da3d85ff1b48d96106747 (patch) | |
| tree | 5ea38baa41c039908d6158c5b074b90b84dc940c /src/cryptonote_core | |
| parent | 69320cd913f51df03f0db79a7764c2ff70f0eba3 (diff) | |
| parent | 688a3e87e712123d182ae6715610c461988f9e74 (diff) | |
| download | monzero-core-443f5c6bdafbd749534da3d85ff1b48d96106747.tar.gz monzero-core-443f5c6bdafbd749534da3d85ff1b48d96106747.tar.xz monzero-core-443f5c6bdafbd749534da3d85ff1b48d96106747.zip | |
Merge pull request #6436
688a3e8 Add timelock verification on device (cslashm)
Diffstat (limited to 'src/cryptonote_core')
| -rw-r--r-- | src/cryptonote_core/cryptonote_tx_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_tx_utils.cpp b/src/cryptonote_core/cryptonote_tx_utils.cpp index b84a59698..3dd29dd1b 100644 --- a/src/cryptonote_core/cryptonote_tx_utils.cpp +++ b/src/cryptonote_core/cryptonote_tx_utils.cpp @@ -590,7 +590,7 @@ namespace cryptonote tx.vout[i].amount = 0; crypto::hash tx_prefix_hash; - get_transaction_prefix_hash(tx, tx_prefix_hash); + get_transaction_prefix_hash(tx, tx_prefix_hash, hwdev); rct::ctkeyV outSk; if (use_simple_rct) tx.rct_signatures = rct::genRctSimple(rct::hash2rct(tx_prefix_hash), inSk, destinations, inamounts, outamounts, amount_in - amount_out, mixRing, amount_keys, msout ? &kLRki : NULL, msout, index, outSk, rct_config, hwdev); |
