Skip to content

Commit

Permalink
integration-test 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sacherjj committed Feb 15, 2022
1 parent 9d45b3b commit 5a9180f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion casper-node_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.2-e2027dbe9
1.3.4-0d28d49
15 changes: 15 additions & 0 deletions config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions config/chainspec.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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

Expand Down
8 changes: 2 additions & 6 deletions config/config-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down
1 change: 1 addition & 0 deletions protocol_versions
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
1_2_1
1_3_1
1_3_2
1_3_4

0 comments on commit 5a9180f

Please sign in to comment.