diff options
author | j-berman <justinberman@protonmail.com> | 2022-06-21 17:45:02 +0100 |
---|---|---|
committer | j-berman <justinberman@protonmail.com> | 2022-08-06 15:04:16 -0700 |
commit | 2b83d00a9bd4ea0cd2145ae4d16d16d65a36af7a (patch) | |
tree | 85a06685890db5b2359d6bc342e2f42952418f19 /src/device/log.cpp | |
parent | Merge pull request #8435 (diff) | |
download | monero-2b83d00a9bd4ea0cd2145ae4d16d16d65a36af7a.tar.xz |
ledger support for hf 15 (BP+, view tags)
Diffstat (limited to 'src/device/log.cpp')
-rw-r--r-- | src/device/log.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/device/log.cpp b/src/device/log.cpp index 9b882b784..b159632d9 100644 --- a/src/device/log.cpp +++ b/src/device/log.cpp @@ -165,6 +165,10 @@ namespace hw { void check8(const std::string &msg, const std::string &info, const char *h, const char *d, bool crypted) { check(msg, info, h, d, 8, crypted); } + + void check1(const std::string &msg, const std::string &info, const char *h, const char *d, bool crypted) { + check(msg, info, h, d, 1, crypted); + } #endif } |