aboutsummaryrefslogtreecommitdiff
path: root/src/device/device_default.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-05-01 15:20:05 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-05-01 15:20:05 -0500
commit443f5c6bdafbd749534da3d85ff1b48d96106747 (patch)
tree5ea38baa41c039908d6158c5b074b90b84dc940c /src/device/device_default.cpp
parentMerge pull request #6420 (diff)
parentAdd timelock verification on device (diff)
downloadmonero-443f5c6bdafbd749534da3d85ff1b48d96106747.tar.xz
Merge pull request #6436
688a3e8 Add timelock verification on device (cslashm)
Diffstat (limited to 'src/device/device_default.cpp')
-rw-r--r--src/device/device_default.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/device/device_default.cpp b/src/device/device_default.cpp
index 57ac7c1b2..47156cbce 100644
--- a/src/device/device_default.cpp
+++ b/src/device/device_default.cpp
@@ -281,6 +281,10 @@ namespace hw {
return true;
}
+ void device_default::get_transaction_prefix_hash(const cryptonote::transaction_prefix& tx, crypto::hash& h) {
+ cryptonote::get_transaction_prefix_hash(tx, h);
+ }
+
bool device_default::generate_output_ephemeral_keys(const size_t tx_version,
const cryptonote::account_keys &sender_account_keys, const crypto::public_key &txkey_pub, const crypto::secret_key &tx_key,
const cryptonote::tx_destination_entry &dst_entr, const boost::optional<cryptonote::account_public_address> &change_addr, const size_t output_index,