From 2b687352e3da180c7ffd29a9ad7d50c93b9ca8f9 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Sun, 15 Jan 2017 10:21:29 +0800 Subject: [PATCH 1/2] clearnet testnet added to README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 90be4fd..0678c38 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,14 @@ Clearnet versions - less up to date: - [http://blox.supportxmr.com/](http://blox.supportxmr.com/) - [https://explorer.xmr.my/](https://explorer.xmr.my/) +Clearnet testnet Monero version - - https enabled: + + - [https://testnet.xmrchain.com/](https://testnet.xmrchain.com/) + Tor users (main Monero network) - down for now: - [http://3ccmeg4dunrl7h3i.onion/](http://3ccmeg4dunrl7h3i.onion/) -Tor users (testnet Monero network) - down for now: - - - [http://xmrtestbbzl275vy.onion](http://xmrtestbbzl275vy.onion) - i2p users (main Monero network) - down for now: - [http://monerotools.i2p](http://monerotools.i2p) From 2f5d1186637143b7af63f4d073f20bbc7a5319e3 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Sun, 15 Jan 2017 10:33:33 +0800 Subject: [PATCH 2/2] add ringct type to tx info --- src/page.h | 1 + src/templates/partials/tx_details.html | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/page.h b/src/page.h index 2a63c4b..763e5a1 100644 --- a/src/page.h +++ b/src/page.h @@ -3882,6 +3882,7 @@ private: with_ring_signatures)}, {"tx_json" , tx_json}, {"is_ringct" , (tx.version > 1)}, + {"rct_type" , tx.rct_signatures.type}, {"has_error" , false}, {"error_msg" , string("")}, {"have_raw_tx" , false}, diff --git a/src/templates/partials/tx_details.html b/src/templates/partials/tx_details.html index d7881a4..404f8e9 100644 --- a/src/templates/partials/tx_details.html +++ b/src/templates/partials/tx_details.html @@ -44,9 +44,10 @@ Tx version: {{tx_version}} No of confirmations: {{confirmations}} - + RingCT/type: {{#is_ringct}}yes/{{rct_type}}{{/is_ringct}}{{^is_ringct}}no{{/is_ringct}} + Extra: {{extra}}