Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change some default values to improve usability #67

Merged
merged 4 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: paritytech
name: chain

# The version of the collection. Must be compatible with semantic versioning
version: 1.8.3
version: 1.9.0

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion roles/key_inject/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
subkey_path: https://releases.parity.io/substrate/x86_64-debian%3Astretch/v3.0.0/subkey/subkey

# Parachain key injection variables
key_inject_parachain_rpc_port: 9955
key_inject_parachain_rpc_port: 9954
key_inject_parachain_scheme: sr25519
# key_inject_parachain_aura_private_key=

Expand Down
6 changes: 3 additions & 3 deletions roles/node/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ node_p2p_private_key: ""
# Substrate changed the default rpc flags: https://github.com/paritytech/substrate/pull/13384
# Port `9933` was replaced by combined port `9944`
# If your node is still using the old binary with old RPC flags, please set this to true
node_legacy_rpc_flags: true
node_legacy_rpc_flags: false
## p2p
node_p2p_bind_addr: "0.0.0.0"
node_p2p_port: "30333"
Expand All @@ -102,7 +102,7 @@ node_db_cache: ""
# amount of blocks to save state in the pruning mode
# if you need the state pruning mode the recommended (default) value is 256
# 0 - the state pruning mode is disabled, keep the state of all blocks ('--state-pruning archive')
node_pruning: 0
node_pruning: 256
# You can specify any custom options as a list
node_custom_options: []
# - "--wasm-execution Compiled"
Expand Down Expand Up @@ -204,7 +204,7 @@ node_parachain_out_peers: "25"
# amount of blocks to save state in the pruning mode
# if you need the state pruning mode the recommended (default) value is 256
# 0 - the state pruning mode is disabled, keep the state of all blocks ('--state-pruning archive')
node_parachain_pruning: 0
node_parachain_pruning: 256
# You can specify any custom options as a list
node_parachain_custom_options: []
# - "--wasm-execution Compiled"
Expand Down
Loading