aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-07-27 17:05:11 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-07-27 17:05:11 -0400
commit8b63bb3c75ea0d949e6e89dac4f392bf63f073d1 (patch)
treec6780168eb26839247795aee46beb3a3e487a2fe /src
parentMerge pull request #7781 (diff)
parentdevice: set correct ledger min version (diff)
downloadmonero-8b63bb3c75ea0d949e6e89dac4f392bf63f073d1.tar.xz
Merge pull request #7789
2161bd0 device: set correct ledger min version (selsta)
Diffstat (limited to 'src')
-rw-r--r--src/device/device_ledger.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/device_ledger.hpp b/src/device/device_ledger.hpp
index 5cb834e02..5abfaf2be 100644
--- a/src/device/device_ledger.hpp
+++ b/src/device/device_ledger.hpp
@@ -44,8 +44,8 @@ namespace hw {
/* Minimal supported version */
#define MINIMAL_APP_VERSION_MAJOR 1
- #define MINIMAL_APP_VERSION_MINOR 6
- #define MINIMAL_APP_VERSION_MICRO 0
+ #define MINIMAL_APP_VERSION_MINOR 7
+ #define MINIMAL_APP_VERSION_MICRO 6
#define VERSION(M,m,u) ((M)<<16|(m)<<8|(u))
#define VERSION_MAJOR(v) (((v)>>16)&0xFF)