From 5996218958ac4a9cf915f11050a42a15d6979642 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Wed, 9 May 2018 19:25:06 +0800 Subject: [PATCH 1/2] pcsclite lite added to CMakeLists --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd13dea..5d8f8e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,6 +119,7 @@ set(LIBRARIES checkpoints version epee + pcsclite ${Boost_LIBRARIES} pthread unbound From 2f1e76cb3b325bd64c938c65d5b02b2c18eb99c2 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Wed, 9 May 2018 19:47:28 +0800 Subject: [PATCH 2/2] Decoding of key images seems fixed. Need still do output file decoding. https://github.com/moneroexamples/onion-monero-blockchain-explorer/issues/115 --- src/tools.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools.h b/src/tools.h index b212db0..0321360 100644 --- a/src/tools.h +++ b/src/tools.h @@ -338,7 +338,7 @@ void chunks(Iterator begin, */ template inline string -remove_bad_chars(T&& in_str, std::regex const& rgx = std::regex ("[^a-zA-Z0-9]")) +remove_bad_chars(T&& in_str, std::regex const& rgx = std::regex ("[^a-zA-Z0-9+/=]")) { return std::regex_replace(std::forward(in_str), rgx, ""); }