diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-08-22 22:49:47 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-08-22 22:49:47 -0500 |
commit | ab63fbc549b2534ce63726ba6ed2fdee29ca9a14 (patch) | |
tree | c8f53af1c5ec09400cf6ffcd009a2ace068522b6 /src/device/log.cpp | |
parent | Merge pull request #8462 (diff) | |
parent | ledger support for hf 15 (BP+, view tags) (diff) | |
download | monero-ab63fbc549b2534ce63726ba6ed2fdee29ca9a14.tar.xz |
Merge pull request #8465
04a1e28 ledger support for hf 15 (BP+, view tags) (j-berman)
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 } |