README updated

This commit is contained in:
moneroexamples 2016-05-09 04:13:17 +00:00
parent 784240c7c9
commit a9b9974340
1 changed files with 5 additions and 1 deletions

View File

@ -8,7 +8,7 @@ Curently avaliable Monero blockchain explorer websites exist in the clearnet. Al
- are closed sourced,
- are not available as hidden services,
- have very only basic search capabilities,
- cant identify users ouputs based on provided Monero address and viewkey.
- can't identify users ouputs based on provided Monero address and viewkey.
In this example, these limitations are addressed by development of
@ -127,6 +127,10 @@ int main(int ac, const char* av[]) {
return xmrblocks.show_tx(tx_hash, with_ring_signatures);
});
CROW_ROUTE(app, "/myoutputs/<string>/<string>/<string>")
([&](string tx_hash, string xmr_address, string viewkey) {
return xmrblocks.show_my_outputs(tx_hash, xmr_address, viewkey);
});
CROW_ROUTE(app, "/search").methods("GET"_method)
([&](const crow::request& req) {