diff --git a/bsc/reth/bsc-mainnet-reth-archive-trace.yml b/bsc/reth/bsc-mainnet-reth-archive-trace.yml index 8d36f6d4..bbf8693a 100644 --- a/bsc/reth/bsc-mainnet-reth-archive-trace.yml +++ b/bsc/reth/bsc-mainnet-reth-archive-trace.yml @@ -53,9 +53,9 @@ services: RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git} ARCH_TARGET: ${ARCH_TARGET:-native} PROFILE: ${RETH_BUILD_PROFILE:-maxperf} - BUILD_OP_RETH: false - BUILD_BASE_RETH: false - BUILD_BSC_RETH: true + BUILD_OP_RETH: "false" + BUILD_BASE_RETH: "false" + BUILD_BSC_RETH: "true" sysctls: # TCP Performance net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle diff --git a/bsc/reth/bsc-mainnet-reth-pruned-trace.yml b/bsc/reth/bsc-mainnet-reth-pruned-trace.yml index 93771b1a..eec02897 100644 --- a/bsc/reth/bsc-mainnet-reth-pruned-trace.yml +++ b/bsc/reth/bsc-mainnet-reth-pruned-trace.yml @@ -53,9 +53,9 @@ services: RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git} ARCH_TARGET: ${ARCH_TARGET:-native} PROFILE: ${RETH_BUILD_PROFILE:-maxperf} - BUILD_OP_RETH: false - BUILD_BASE_RETH: false - BUILD_BSC_RETH: true + BUILD_OP_RETH: "false" + BUILD_BASE_RETH: "false" + BUILD_BSC_RETH: "true" sysctls: # TCP Performance net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle diff --git a/reth.Dockerfile b/reth.Dockerfile index 1459d38c..948b71d7 100644 --- a/reth.Dockerfile +++ b/reth.Dockerfile @@ -268,9 +268,9 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ cp target/release/base-reth-node /usr/local/bin/base-reth-node; \ elif [ "$BUILD_BSC_RETH" = "true" ]; then \ echo "DEBUG: Taking BSC_RETH branch" && \ - echo "Building bsc-reth" && \ - cargo build --profile $PROFILE --locked --bin bsc-reth --features jemalloc,asm-keccak && \ - cp target/$PROFILE/bsc-reth /usr/local/bin/reth; \ + echo "Building reth-bsc" && \ + cargo build --profile $PROFILE --locked --bin reth-bsc --features jemalloc,asm-keccak && \ + cp target/$PROFILE/reth-bsc /usr/local/bin/reth; \ else \ echo "DEBUG: Taking DEFAULT branch" && \ echo "Building standard reth" && \