From 5679dfb83fdf239a00cc5533e6993515245af5e8 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Mon, 5 Dec 2016 09:20:09 +0800 Subject: [PATCH] readme updated and small fix in an error message --- README.md | 8 +++++--- src/page.h | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 64de584..286047b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ an Onion Monero Blockchain Explorer. The example not only shows how to use Moner - [crow](https://github.com/ipkn/crow) - C++ micro web framework - [lmdb++](https://github.com/bendiken/lmdbxx) - C++ wrapper for the LMDB - [mstch](https://github.com/no1msd/mstch) - C++ {{mustache}} templates - - [rapidjson](https://github.com/miloyip/rapidjson) - C++ JSON parser/generator + - [json](https://github.com/nlohmann/json) - JSON for Modern C++ - [date](https://github.com/HowardHinnant/date) - C++ date and time library - [fmt](https://github.com/fmtlib/fmt) - Small, safe and fast string formatting library @@ -43,7 +43,7 @@ Non tor users, can use its clearnet version (thanks to [Gingeropolous](https://g ## Onion Monero Blockchain Explorer features -The key features of the Onion Monero Blockchain Explorer are +The key features of the Onion Monero Blockchain Explorer are: - available as a hidden service, - no javascript, no cookies, no web analytics trackers, no images, @@ -61,7 +61,9 @@ The key features of the Onion Monero Blockchain Explorer are - the only explorer showing detailed information about mixins, such as, mixins' age, timescale, mixin of mixins, - the only explorer showing number of amount output indices, - - the only explorer supporting Monero testnet network and RingCT. + - the only explorer supporting Monero testnet network and RingCT, + - the only explorer providing tx checker and pusher for online pushing of transactions, + - the only explorer allowing to inspect encrypted key images file and output files. ## Prerequisite diff --git a/src/page.h b/src/page.h index 7fd9e85..661cc8c 100644 --- a/src/page.h +++ b/src/page.h @@ -2433,7 +2433,7 @@ public: if (viewkey_str.empty()) { string error_msg = fmt::format("View key not given. Cant decode " - "the key image data without it!"); + "the outputs data without it!"); context["has_error"] = true; context["error_msg"] = error_msg;