Skip to content

Commit

Permalink
Merge pull request #463 from hyphacoop/fix/block-fast-sync
Browse files Browse the repository at this point in the history
Closes #462
  • Loading branch information
dasanchez committed May 22, 2024
2 parents 6b51819 + 8eba65d commit 81d45c2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion examples/inventory-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
all:
vars:
chain_home_clear: true
chain_version: v14.1.0
chain_version: v15.2.0
block_sync: false
api_enabled: true
chain_id: "my-devnet"
chain_use_ssl_proxy: true
Expand Down
6 changes: 3 additions & 3 deletions examples/inventory-local-genesis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
all:
vars:
chain_home_clear: true
chain_version: v14.1.0
genesis_url: "https://files.polypore.xyz/genesis/mainnet-genesis-tinkered/latest_v13.json.gz"
chain_version: v15.2.0
genesis_url: "https://files.polypore.xyz/genesis/theta-testnet-tinkered/latest_v15.json.gz"
ansible_user: root
enable_swap: true # Set this for machines with <32GB RAM
swap_size: 32768
children:
node:
hosts:
"{{ target }}":
fast_sync: false
block_sync: false
node_key_file: "examples/validator-keys/validator-40/node_key.json"
priv_validator_key_file: "examples/validator-keys/validator-40/priv_validator_key.json"
1 change: 1 addition & 0 deletions examples/inventory-local-rs-testnet-neutron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
all:
vars:
reboot: false
fast_sync: false
children:
provider:
vars:
Expand Down
1 change: 1 addition & 0 deletions examples/inventory-local-rs-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
all:
vars:
reboot: false
fast_sync: false
children:
provider:
vars:
Expand Down
4 changes: 2 additions & 2 deletions examples/inventory-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
all:
vars:
chain_home_clear: true
chain_version: v14.1.0
chain_version: v15.2.0
chain_create_validator: true
faucet_enabled: true
ansible_user: root
block_sync: false
children:
node:
hosts:
"{{ target }}":
fast_sync: false
chain_id: my-testnet
chain_moniker: cosmos-node
2 changes: 1 addition & 1 deletion roles/node/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ statesync_snapshot_keep_recent: 2
# config.toml
# config.toml: Base Config
config_proxy_app: 'tcp://127.0.0.1:26658'
fast_sync: true
fast_sync: ''
block_sync: ''
config_genesis_file: 'config/genesis.json'
config_priv_validator_key_file: 'config/priv_validator_key.json'
Expand Down

0 comments on commit 81d45c2

Please sign in to comment.