From 5a9180f5cd4a7b5929e55ddf653b41700f762b24 Mon Sep 17 00:00:00 2001 From: Joe Sacher <321623+sacherjj@users.noreply.github.com> Date: Fri, 11 Feb 2022 11:52:36 -0500 Subject: [PATCH] integration-test 1.3.4 --- casper-node_release | 2 +- config/CHANGELOG.md | 15 +++++++++++++++ config/chainspec.toml | 4 ++-- config/config-example.toml | 8 ++------ protocol_versions | 1 + 5 files changed, 21 insertions(+), 9 deletions(-) diff --git a/casper-node_release b/casper-node_release index 5c86bc6..5e639cf 100644 --- a/casper-node_release +++ b/casper-node_release @@ -1 +1 @@ -1.3.2-e2027dbe9 \ No newline at end of file +1.3.4-0d28d49 \ No newline at end of file diff --git a/config/CHANGELOG.md b/config/CHANGELOG.md index 764c8dc..cda773f 100644 --- a/config/CHANGELOG.md +++ b/config/CHANGELOG.md @@ -12,6 +12,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). [comment]: <> (Security: in case of vulnerabilities) +## 1.3.4 - 1960 +### casper-node 1.3.4-0d28d49 + +## Changed +* chainspec.toml + * protocol + * version + * activation_point +* config-example.toml + * consensus + * highway + * pending_vertex_timeout from 30min to 15min + * standstill_timeout from 30 min to 15 min + + ## 1.3.2 - 1389 ### casper-node 1.3.2-e2027dbe9 diff --git a/config/chainspec.toml b/config/chainspec.toml index 6efc76f..c5ad5e2 100644 --- a/config/chainspec.toml +++ b/config/chainspec.toml @@ -1,6 +1,6 @@ [protocol] # Protocol version. -version = '1.3.2' +version = '1.3.4' # Whether we need to clear latest blocks back to the switch block just before the activation point or not. hard_reset = true # This protocol version becomes active at this point. @@ -11,7 +11,7 @@ hard_reset = true # in contract-runtime for computing genesis post-state hash. # # If it is an integer, it represents an era ID, meaning the protocol version becomes active at the start of this era. -activation_point = 1389 +activation_point = 1960 # Optional era ID in which the last emergency restart happened. #last_emergency_restart = 0 diff --git a/config/config-example.toml b/config/config-example.toml index 34b88e9..6ddc2d5 100644 --- a/config/config-example.toml +++ b/config/config-example.toml @@ -41,10 +41,10 @@ secret_key_path = '/etc/casper/validator_keys/secret_key.pem' unit_hashes_folder = "/var/lib/casper/casper-node" # The duration for which incoming vertices with missing dependencies should be kept in a queue. -pending_vertex_timeout = '30min' +pending_vertex_timeout = '15min' # If the current era's protocol state has not progressed for this long, shut down. -standstill_timeout = '30min' +standstill_timeout = '15min' # If after another `standstill_timeout` there still was no progress, shut down. shutdown_on_standstill = true @@ -113,10 +113,6 @@ known_addresses = ['18.219.25.234:35000','3.138.177.248:35000','3.140.179.157:35 # The interval (in milliseconds) between each fresh round of gossiping the node's public address. gossip_interval = 120_000 -# Minimum amount of time that has to pass before attempting to reconnect after losing all -# connections to established nodes. -isolation_reconnect_delay = '2s' - # Initial delay for starting address gossipping after the network starts. This should be slightly # more than the expected time required for initial connections to complete. initial_gossip_delay = '5s' diff --git a/protocol_versions b/protocol_versions index 576e12e..c55a607 100644 --- a/protocol_versions +++ b/protocol_versions @@ -5,3 +5,4 @@ 1_2_1 1_3_1 1_3_2 +1_3_4