This commit is contained in:
goldsquid
2025-09-13 21:07:43 +07:00
parent 1fc9974623
commit 47b67b8457
3 changed files with 9 additions and 9 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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" && \