Skip to content

Commit

Permalink
test: update staging deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
rsporny committed Jan 10, 2025
1 parent 219e3c0 commit 2b1ab26
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions E2E-tests/config/substrate/staging_nodes.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"deployment_mc_epoch": 779,
"deployment_mc_epoch": 808,
"genesis_utxo": "de7b8efb08243b770be30cfa22a9ed64317c50052bb4394392960ddcc9810048#1",
"deployment_version": "v1.4.0",
"deployment_version": "798bc5dbff4f6910061afd1627d736ee99d8a081",
"test_environment": "staging",
"nodes_config": {
"nodes": {
Expand Down
2 changes: 1 addition & 1 deletion E2E-tests/config/substrate/staging_stack.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"ssh": "${stack_config[ssh]}"
},
"generate_signatures_cli": {
"cli": "/tools/partner-chains-node",
"cli": "/tools/partner-chains-node-8123fa66d943cd73531f5d8f539e0c4547519ee5",
"ssh": "${stack_config[ssh]}"
},
"bech32": {
Expand Down
4 changes: 2 additions & 2 deletions E2E-tests/utils/pc_epoch_calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
def mc_2_pc(mc_epoch: int):
epochs_range = calc.find_pc_epochs(mc_epoch)
print(
f"PC epochs range is {calc.range_in_math_notation(epochs_range)}, both included."
f"PC epochs range is {calc.range_in_math_notation(epochs_range)}, both included. "
f"It's {len(epochs_range)} epochs."
)
return epochs_range
Expand All @@ -46,7 +46,7 @@ def main():
mode = int(input("Which mode you want to enter? Type: (1) MC->PC, or (2) PC->MC\n"))
if mode == 1:
mc_epoch = int(input("Enter MC epoch: "))
mc_2_pc(mc_epoch, config)
mc_2_pc(mc_epoch)
elif mode == 2:
pc_epoch = int(input("Enter PC epoch: "))
current_mc_epoch = int(input("Enter current MC epoch: "))
Expand Down

0 comments on commit 2b1ab26

Please sign in to comment.