From b4eda902eae1cfa1cc9d3c1e9c8d97e88999ee88 Mon Sep 17 00:00:00 2001 From: "jonathan@vulcanize.io" Date: Fri, 8 Mar 2024 19:27:36 +0000 Subject: [PATCH] fixed optimum deployment --- stack_orchestrator/data/compose/docker-compose-blast.yml | 2 +- stack_orchestrator/data/stacks/blast/deploy/commands.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stack_orchestrator/data/compose/docker-compose-blast.yml b/stack_orchestrator/data/compose/docker-compose-blast.yml index 4320a601..0c9672ae 100644 --- a/stack_orchestrator/data/compose/docker-compose-blast.yml +++ b/stack_orchestrator/data/compose/docker-compose-blast.yml @@ -67,7 +67,7 @@ services: --l1.rpckind="any" --l2="http://blast-geth:8551" --l2.jwt-secret=/blast/jwt.txt - --rollup.config="/blast/${NETWORK:-mainnet}/rollup.json" + --rollup.config="/blast/rollup.json" depends_on: - blast-geth env_file: diff --git a/stack_orchestrator/data/stacks/blast/deploy/commands.py b/stack_orchestrator/data/stacks/blast/deploy/commands.py index c4e810d4..8b5768fe 100644 --- a/stack_orchestrator/data/stacks/blast/deploy/commands.py +++ b/stack_orchestrator/data/stacks/blast/deploy/commands.py @@ -20,7 +20,7 @@ from shutil import copy def create(context, extra_args): - # Our goal here is just to copy the genesis.json file for blast + # Our goal here is just to copy the json files for blast deployment_config_dir = context.deployment_dir.joinpath("data", "blast-data") command_context = extra_args[2] compose_file = [f for f in command_context.cluster_context.compose_files if "blast" in f][0]