Skip to content
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,10 @@ chains:
app_version: "3.11.0"
forking:
enabled: true
image: "tiljordan/thornode-forking:1.0.25-23761879"
image: "tiljordan/thornode-forking:1.0.26-23761879"
height: 23015000
participants:
- image: "tiljordan/thornode-forking:1.0.25-23761879"
- image: "tiljordan/thornode-forking:1.0.26-23761879"
count: 1
account_balance: 1000000000000
bond_amount: 500000000000
Expand Down
2 changes: 1 addition & 1 deletion examples/cli-with-network.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ chains:
participants:
- type: full
count: 1
image: "tiljordan/thornode-forking:1.0.25-23761879"
image: "tiljordan/thornode-forking:1.0.26-23761879"
account_balance: 1000000000000
bond_amount: 500000000000
min_cpu: 500
Expand Down
2 changes: 1 addition & 1 deletion examples/forking-1.0.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ chains:
- name: thorchain
type: thorchain
participants:
- image: "tiljordan/thornode-forking:1.0.25-23761879"
- image: "tiljordan/thornode-forking:1.0.26-23761879"
account_balance: 1000000000000000
bond_amount: "300000000000000"
count: 1
Expand Down
4 changes: 2 additions & 2 deletions examples/forking-genesis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ chains:

forking:
enabled: true
image: "tiljordan/thornode-forking:1.0.25-23761879"
image: "tiljordan/thornode-forking:1.0.26-23761879"
height: 23043758

participants:
- type: full
count: 1
image: "tiljordan/thornode-forking:1.0.25-23761879"
image: "tiljordan/thornode-forking:1.0.26-23761879"
account_balance: 1000000000000
bond_amount: 500000000000
min_cpu: 500
Expand Down
2 changes: 1 addition & 1 deletion src/faucet/faucet_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def launch_faucet(plan, chain_name, chain_id, mnemonic, transfer_amount):
)

# Use thornode forking image to get thornode CLI in container
faucet_image = "tiljordan/thornode-forking:1.0.25-23761879"
faucet_image = "tiljordan/thornode-forking:1.0.26-23761879"

# Launch the faucet service
plan.add_service(
Expand Down
2 changes: 1 addition & 1 deletion src/network_launcher/single_node_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def launch_single_node(plan, chain_cfg):
config_folder = "/root/.thornode/config"

forking_config = chain_cfg.get("forking", {})
forking_image = forking_config.get("image", "tiljordan/thornode-forking:1.0.25-23761879")
forking_image = forking_config.get("image", "tiljordan/thornode-forking:1.0.26-23761879")

participant = chain_cfg["participants"][0]
node_volume_size = participant.get("persistent_size_mb", chain_cfg.get("node_persistent_size_mb", 16384))
Expand Down
4 changes: 2 additions & 2 deletions src/package_io/thorchain_defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
{
"type": "full",
"count": 1,
"image": "tiljordan/thornode-forking:1.0.25-23761879",
"image": "tiljordan/thornode-forking:1.0.26-23761879",
"account_balance": 1000000000000,
"bond_amount": 500000000000,
"min_cpu": 1000,
Expand All @@ -68,7 +68,7 @@
],
"forking": {
"enabled": true,
"image": "tiljordan/thornode-forking:1.0.25-23761879",
"image": "tiljordan/thornode-forking:1.0.26-23761879",
"grpc": "grpc.thor.pfc.zone:443",
"chain_id": "thorchain-1",
"height": 23043758,
Expand Down
2 changes: 1 addition & 1 deletion src/toolchain-cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tiljordan/thornode-forking:1.0.25-23761879
FROM tiljordan/thornode-forking:1.0.26-23761879

SHELL ["/bin/bash", "-lc"]

Expand Down