diff --git a/docker-compose.yaml b/docker-compose.yaml index 670d1238..0f1e5501 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -98,7 +98,6 @@ services: - --output-ssz=/consensus/genesis.ssz - --chain-config-file=/config/prysm.yaml - --geth-genesis-json-in=/config/geth_genesis.json - - --geth-genesis-json-out=/config/geth_genesis.json volumes: - "consensus:/consensus" - "config:/config" diff --git a/scripts/config.ts b/scripts/config.ts index 6323c7b5..e10f5718 100644 --- a/scripts/config.ts +++ b/scripts/config.ts @@ -72,7 +72,14 @@ function writeGethGenesisConfig(argv: any) { "shanghaiTime": 0, "cancunTime": 1706778826, "terminalTotalDifficulty": 0, - "terminalTotalDifficultyPassed": true + "terminalTotalDifficultyPassed": true, + "blobSchedule": { + "cancun": { + "target": 3, + "max": 6, + "baseFeeUpdateFraction": 3338477 + } + } }, "difficulty": "0", "extradata": "0x00000000000000000000000000000000000000000000000000000000000000003f1Eae7D46d88F08fc2F8ed27FCb2AB183EB2d0E0B0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", diff --git a/test-node.bash b/test-node.bash index 9c6f6ef5..788acc68 100755 --- a/test-node.bash +++ b/test-node.bash @@ -375,7 +375,7 @@ if $build_utils; then if [ "$ci" == true ]; then # workaround to cache docker layers and keep using docker-compose in CI - docker buildx bake --file docker-compose.yaml --file docker-compose-ci-cache.json $LOCAL_BUILD_NODES + docker buildx bake --allow=fs=/tmp --file docker-compose.yaml --file docker-compose-ci-cache.json $LOCAL_BUILD_NODES else UTILS_NOCACHE="" if $force_build_utils; then