fixed missing rollup
Some checks failed
Lint Checks / Run linter (pull_request) Failing after 43s
Lint Checks / Run linter (push) Failing after 45s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m38s
Webapp Test / Run webapp test suite (pull_request) Successful in 5m11s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 9m23s
Smoke Test / Run basic test suite (pull_request) Successful in 4m47s

This commit is contained in:
jonathan@vulcanize.io 2024-03-13 04:28:16 +00:00
parent 5123111db0
commit 821d401575
2 changed files with 4 additions and 3 deletions

View File

@ -58,9 +58,7 @@ services:
op-node:
image: blastio/blast-optimism:${NETWORK:-mainnet}
volumes:
- blast-data:/blast
- ../config/blast/genesis.json:/blast/genesis.json
- ../config/blast/rollup.json:/blast/rollup.json
- blast-data:/blast:rw
ports:
- "9003"
command: >

View File

@ -35,3 +35,6 @@ def create(context, extra_args):
compose_file = [f for f in command_context.cluster_context.compose_files if "blast" in f][0]
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "genesis.json")
copy(source_config_file, deploy_dir)
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "rollup.json")
copy(source_config_file, deploy_dir)