Skip to content

Commit

Permalink
Merge pull request #43 from sacherjj/integration-test-1.5.1
Browse files Browse the repository at this point in the history
integration-test 1.5.1
  • Loading branch information
sacherjj authored Jun 14, 2023
2 parents 21be1ac + cd90868 commit e0fad3e
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 6 deletions.
2 changes: 1 addition & 1 deletion casper-node_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0-rc.1-a50b85a
1.5.1-805a420
17 changes: 17 additions & 0 deletions config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
[comment]: <> (Fixed: any bug fixes)
[comment]: <> (Security: in case of vulnerabilities)

## 1.5.1 - 9534
### casper-node 1.5.1-805a420

## Added
* config-example.toml
* node
* shutdown_for_upgrade_timeout
* upgrade_timeout

## Changed
* chainspec.toml
* protocol
* version
* activation_point
* wasm
* max_stack_height

## 1.5.0 - 9128
### casper-node 1.5.0-rc.1-a50b85a

Expand Down
8 changes: 4 additions & 4 deletions config/chainspec.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[protocol]
# Protocol version.
version = '1.5.0'
version = '1.5.1'
# 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 = 9128
activation_point = 9534

[network]
# Human readable name for convenience; the genesis_hash is the true identifier. The name influences the genesis hash by
Expand Down Expand Up @@ -92,7 +92,7 @@ reduced_reward_multiplier = [1, 5]
# The maximum number of Motes allowed to be spent during payment. 0 means unlimited.
max_payment_cost = '0'
# The duration after the deploy timestamp that it can be included in a block.
max_ttl = '1day'
max_ttl = '18hours'
# The maximum number of other deploys a deploy can depend on (require to have been executed before it can execute).
max_dependencies = 10
# Maximum block size in bytes including deploys contained by the block. 0 means unlimited.
Expand All @@ -118,7 +118,7 @@ native_transfer_minimum_motes = 2_500_000_000
# Amount of free memory (in 64kB pages) each contract can use for stack.
max_memory = 64
# Max stack height (native WebAssembly stack limiter).
max_stack_height = 200
max_stack_height = 500

[wasm.storage_costs]
# Gas charged per byte stored in the global state.
Expand Down
7 changes: 7 additions & 0 deletions config/config-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ control_logic_default_delay = '1sec'
# Flag which forces the node to resync all of the blocks.
force_resync = false

# A timeout for the ShutdownForUpgrade state, after which the node will upgrade even if not all
# conditions are satisfied.
shutdown_for_upgrade_timeout = '2min'

# Maximum time a node will wait for an upgrade to commit.
upgrade_timeout = '30sec'


# =================================
# Configuration options for logging
Expand Down
3 changes: 2 additions & 1 deletion protocol_versions
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@
1_4_12
1_4_13
1_4_15
1_5_0
1_5_0
1_5_1

0 comments on commit e0fad3e

Please sign in to comment.