summaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2024-10-22 07:15:51 +0000
committercyan <cyjan@mrcyjanek.net>2024-10-22 07:15:51 +0000
commite266311b2907fb13a12d8f88056fed65242efefb (patch)
tree855984f78327156c3cc7caecb6c22fbd3d7582b1 /patches
parentf3b6fcf3c411ef6ea6fa85f4dc9abe7b850252c6 (diff)
parent1d8e0fb30b53c28756f23676d5a3e1a99a9b3051 (diff)
Merge remote-tracking branch 'origin/master' into cyjan-cleanup-patches
Diffstat (limited to 'patches')
-rw-r--r--patches/monero/0008-add-dummy-device-for-ledger.patch7
1 files changed, 5 insertions, 2 deletions
diff --git a/patches/monero/0008-add-dummy-device-for-ledger.patch b/patches/monero/0008-add-dummy-device-for-ledger.patch
index c654f66..47dbf44 100644
--- a/patches/monero/0008-add-dummy-device-for-ledger.patch
+++ b/patches/monero/0008-add-dummy-device-for-ledger.patch
@@ -12,10 +12,10 @@ Subject: [PATCH 08/12] add dummy device for ledger
src/device/device_io_dummy.hpp | 74 ++++++++++++++++++
src/device/device_ledger.cpp | 6 +-
src/device/device_ledger.hpp | 7 +-
- src/wallet/api/wallet.cpp | 93 +++++++++++++++++++++++
+ src/wallet/api/wallet.cpp | 94 +++++++++++++++++++++++
src/wallet/api/wallet.h | 18 +++++
src/wallet/api/wallet2_api.h | 12 +++
- 11 files changed, 356 insertions(+), 21 deletions(-)
+ 11 files changed, 357 insertions(+), 21 deletions(-)
create mode 100644 src/device/device_io_dummy.cpp
create mode 100644 src/device/device_io_dummy.hpp
@@ -502,6 +502,7 @@ index 4fb5f7595..ec79482ac 100644
+ return;
+ #else
+ hw::io::device_io_dummy::receivedFromDevice = static_cast<unsigned char *>(malloc(len));
++ hw::io::device_io_dummy::receivedFromDeviceLength = len;
+ memset(hw::io::device_io_dummy::receivedFromDevice, 0, len);
+ memcpy(hw::io::device_io_dummy::receivedFromDevice, data, len);
+ hw::io::device_io_dummy::waitsForDeviceReceive = false;
@@ -576,4 +577,6 @@ index 764adbfbf..53ec4abfc 100644
/**
--
2.43.0
+=======
+2.45.1.windows.1