aboutsummaryrefslogtreecommitdiff
path: root/src/device/device_default.cpp
diff options
context:
space:
mode:
authorCédric <cslashm@gmail.com>2018-03-05 14:46:15 +0100
committercslashm <cslashm@gmail.com>2018-03-12 10:43:06 +0100
commit73dd883d5112e2e8be1a465aca3b3fb48b651afd (patch)
tree612da8e64d9b036f1934174ab766befa9a0324b7 /src/device/device_default.cpp
parentMerge pull request #3368 (diff)
downloadmonero-73dd883d5112e2e8be1a465aca3b3fb48b651afd.tar.xz
Ledger HW Bug fixes
Fix the way the REAL mode is handle: Let create_transactions_2 and create_transactions_from construct the vector of transactions. Then iterate on it and resign. We just need to add 'outs' list in the TX struct for that. Fix default secret keys value when DEBUG_HWDEVICE mode is off The magic value (00...00 for view key and FF..FF for spend key) was not correctly set when DEBUG_HWDEVICE was off. Both was set to 00...00. Add sub-address info in ABP map in order to correctly display destination sub-address on device Fix DEBUG_HWDEVICE mode: - Fix compilation errors. - Fix control device init in ledger device. - Add more log. Fix sub addr control Fix debug Info
Diffstat (limited to 'src/device/device_default.cpp')
-rw-r--r--src/device/device_default.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/device_default.cpp b/src/device/device_default.cpp
index c3ba42000..7ae72af44 100644
--- a/src/device/device_default.cpp
+++ b/src/device/device_default.cpp
@@ -185,7 +185,7 @@ namespace hw {
}
- bool device_default::add_output_key_mapping(const crypto::public_key &Aout, const crypto::public_key &Bout, size_t real_output_index,
+ bool device_default::add_output_key_mapping(const crypto::public_key &Aout, const crypto::public_key &Bout, const bool is_subaddress, const size_t real_output_index,
const rct::key &amount_key, const crypto::public_key &out_eph_public_key) {
return true;
}