fix
This commit is contained in:
@@ -53,9 +53,9 @@ services:
|
|||||||
RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git}
|
RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git}
|
||||||
ARCH_TARGET: ${ARCH_TARGET:-native}
|
ARCH_TARGET: ${ARCH_TARGET:-native}
|
||||||
PROFILE: ${RETH_BUILD_PROFILE:-maxperf}
|
PROFILE: ${RETH_BUILD_PROFILE:-maxperf}
|
||||||
BUILD_OP_RETH: false
|
BUILD_OP_RETH: "false"
|
||||||
BUILD_BASE_RETH: false
|
BUILD_BASE_RETH: "false"
|
||||||
BUILD_BSC_RETH: true
|
BUILD_BSC_RETH: "true"
|
||||||
sysctls:
|
sysctls:
|
||||||
# TCP Performance
|
# TCP Performance
|
||||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
|
|||||||
@@ -53,9 +53,9 @@ services:
|
|||||||
RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git}
|
RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git}
|
||||||
ARCH_TARGET: ${ARCH_TARGET:-native}
|
ARCH_TARGET: ${ARCH_TARGET:-native}
|
||||||
PROFILE: ${RETH_BUILD_PROFILE:-maxperf}
|
PROFILE: ${RETH_BUILD_PROFILE:-maxperf}
|
||||||
BUILD_OP_RETH: false
|
BUILD_OP_RETH: "false"
|
||||||
BUILD_BASE_RETH: false
|
BUILD_BASE_RETH: "false"
|
||||||
BUILD_BSC_RETH: true
|
BUILD_BSC_RETH: "true"
|
||||||
sysctls:
|
sysctls:
|
||||||
# TCP Performance
|
# TCP Performance
|
||||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
|
|||||||
@@ -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; \
|
cp target/release/base-reth-node /usr/local/bin/base-reth-node; \
|
||||||
elif [ "$BUILD_BSC_RETH" = "true" ]; then \
|
elif [ "$BUILD_BSC_RETH" = "true" ]; then \
|
||||||
echo "DEBUG: Taking BSC_RETH branch" && \
|
echo "DEBUG: Taking BSC_RETH branch" && \
|
||||||
echo "Building bsc-reth" && \
|
echo "Building reth-bsc" && \
|
||||||
cargo build --profile $PROFILE --locked --bin bsc-reth --features jemalloc,asm-keccak && \
|
cargo build --profile $PROFILE --locked --bin reth-bsc --features jemalloc,asm-keccak && \
|
||||||
cp target/$PROFILE/bsc-reth /usr/local/bin/reth; \
|
cp target/$PROFILE/reth-bsc /usr/local/bin/reth; \
|
||||||
else \
|
else \
|
||||||
echo "DEBUG: Taking DEFAULT branch" && \
|
echo "DEBUG: Taking DEFAULT branch" && \
|
||||||
echo "Building standard reth" && \
|
echo "Building standard reth" && \
|
||||||
|
|||||||
Reference in New Issue
Block a user