From 71238c481cc5896dd711830b90e030c50f043bd6 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Wed, 17 Oct 2018 07:04:01 +0800 Subject: [PATCH] Readme updated --- README.md | 10 +++------- src/MempoolStatus.cpp | 1 + src/MempoolStatus.h | 1 + 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 37a125d..95a3d6e 100644 --- a/README.md +++ b/README.md @@ -28,25 +28,22 @@ Tor users: - [http://dvwae436pd7nt4bc.onion](http://dvwae436pd7nt4bc.onion) (Front-end templates are [maintained by @suhz](https://github.com/suhz/onion-monero-blockchain-explorer/tree/moneroexplorer.com/src/templates)). Clearnet versions: - - [http://172.104.45.209:8081/](http://172.104.45.209:8081/) - devel version, javascript enabled. - - [https://labor.serveo.net/](https://labor.serveo.net/) - temprorary link (slow), bleading edge version. - [https://xmrchain.net/](https://xmrchain.net/) - https enabled, most popular and very stable. - [https://MoneroExplorer.com/](https://moneroexplorer.com/) - nice looking one, https enabled. - [https://monerohash.com/explorer/](https://monerohash.com/explorer/) - nice looking one, https enabled. - [http://explore.MoneroWorld.com](http://explore.moneroworld.com) - same as the second one. - - [https://moneroexplorer.pro/](https://moneroexplorer.pro/) - nice looking one, https enabled. - [http://monerochain.com/](http://monerochain.com/) - JSON API based, multiple nodes. - [https://blox.minexmr.com/](https://blox.minexmr.com/) - - https enabled. Testnet version: - - [http://nimis.serveo.net/](http://nimis.serveo.net/) - bleeding edge version (down currently). - [https://testnet.xmrchain.com/](https://testnet.xmrchain.com/) - https enabled. - [https://explorer.monero-otc.com/](https://explorer.monero-otc.com/) - https enabled. Stagenet version: - - [http://162.210.173.150:8083/](http://162.210.173.150:8083/) - recent version. + - [https://stagenet.xmrchain.net/](https://stagenet.xmrchain.net/) + - [http://162.210.173.150:8083/](http://162.210.173.150:8083/) i2p users (main Monero network): @@ -55,7 +52,6 @@ i2p users (main Monero network): Alternative block explorers: - [http://moneroblocks.info](http://moneroblocks.info/) -- [https://monerobase.com](https://monerobase.com/) - [https://monerovision.com](https://monerovision.com) - [http://chainradar.com](http://chainradar.com/xmr/blocks) @@ -94,7 +90,7 @@ Current development branch: ## Compilation on Ubuntu 16.04/18.04 -##### Compile latest Monero development version +##### Compile latest Monero version (0.13) Download and compile recent Monero into your home folder: diff --git a/src/MempoolStatus.cpp b/src/MempoolStatus.cpp index 2896714..fa4d46b 100644 --- a/src/MempoolStatus.cpp +++ b/src/MempoolStatus.cpp @@ -267,6 +267,7 @@ MempoolStatus::read_network_info() local_copy.cumulative_difficulty = rpc_network_info.cumulative_difficulty; local_copy.block_size_limit = rpc_network_info.block_size_limit; local_copy.block_size_median = rpc_network_info.block_size_median; + local_copy.block_weight_limit = rpc_network_info.block_weight_limit; local_copy.start_time = rpc_network_info.start_time; diff --git a/src/MempoolStatus.h b/src/MempoolStatus.h index 16d684b..c871445 100644 --- a/src/MempoolStatus.h +++ b/src/MempoolStatus.h @@ -72,6 +72,7 @@ struct MempoolStatus uint64_t cumulative_difficulty {0}; uint64_t block_size_limit {0}; uint64_t block_size_median {0}; + uint64_t block_weight_limit {0}; char block_size_limit_str[10]; // needs to be trivially copyable char block_size_median_str[10]; // std::string is not trivially copyable uint64_t start_time {0};