From 9d6216e16bbb4bc7fac4d52df1d820c10848f024 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Fri, 4 Dec 2020 09:41:40 +0000 Subject: [PATCH] decrease pow, bump version --- CHANGELOG.md | 5 +++++ src/etc/onionrvalues.py | 2 +- static-data/default_config.json | 6 +++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6109e072..caa6ab2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [8.0.0] - 2020-12-04 + +* Decrease PoW until better implementation is made + + ## [7.2.0] - 2020-12-03 * Purge blocks not meeting current pow on startup diff --git a/src/etc/onionrvalues.py b/src/etc/onionrvalues.py index 9b6ef81c..cafb8010 100755 --- a/src/etc/onionrvalues.py +++ b/src/etc/onionrvalues.py @@ -23,7 +23,7 @@ import filepaths DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA" PASSWORD_LENGTH = 25 ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net' -ONIONR_VERSION = '7.2.0' +ONIONR_VERSION = '8.0.0' ONIONR_VERSION_CODENAME = 'Genesis' ONIONR_VERSION_TUPLE = tuple(ONIONR_VERSION.split('.')) # (MAJOR, MINOR, VERSION) API_VERSION = '2' # increments of 1; only change when something fundamental about how the API works changes. This way other nodes know how to communicate without learning too much information about you. diff --git a/static-data/default_config.json b/static-data/default_config.json index 69b485fc..2a788eb3 100755 --- a/static-data/default_config.json +++ b/static-data/default_config.json @@ -14,8 +14,8 @@ "hide_created_blocks": true, "insert_deniable_blocks": true, "max_block_age": 2678400, - "minimum_block_pow": 6, - "minimum_send_pow": 6, + "minimum_block_pow": 5, + "minimum_send_pow": 5, "public_key": "", "random_bind_ip": true, "security_level": 0, @@ -76,4 +76,4 @@ "public_remote_hosts": [], "theme": "dark" } -} \ No newline at end of file +}