Skip to content

Commit 31cb70b

Browse files
authored
Merge branch 'master' into testing-namespace
2 parents f115a1d + 0d01f21 commit 31cb70b

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

clients/besu/besu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,13 @@ FLAGS="$FLAGS --snapsync-server-enabled"
152152
# Configure RPC.
153153
RPCFLAGS="--host-allowlist=*"
154154
if [ "$HIVE_GRAPHQL_ENABLED" == "" ]; then
155-
RPCFLAGS="$RPCFLAGS --rpc-http-enabled --rpc-http-api=DEBUG,TRACE,ETH,NET,WEB3,ADMIN,TESTING --rpc-http-host=0.0.0.0"
155+
RPCFLAGS="$RPCFLAGS --rpc-http-enabled --rpc-http-api=DEBUG,TRACE,ETH,NET,TXPOOL,WEB3,ADMIN,TESTING --rpc-http-host=0.0.0.0"
156156
else
157157
RPCFLAGS="$RPCFLAGS --graphql-http-enabled --graphql-http-host=0.0.0.0 --graphql-http-port=8545"
158158
fi
159159

160160
# Enable WebSocket.
161-
RPCFLAGS="$RPCFLAGS --rpc-ws-enabled --rpc-ws-api=DEBUG,TRACE,ETH,NET,WEB3,ADMIN,TESTING --rpc-ws-host=0.0.0.0"
161+
RPCFLAGS="$RPCFLAGS --rpc-ws-enabled --rpc-ws-api=DEBUG,TRACE,ETH,NET,TXPOOL,WEB3,ADMIN,TESTING --rpc-ws-host=0.0.0.0"
162162

163163
# Enable merge support if needed
164164
if [ "$HIVE_TERMINAL_TOTAL_DIFFICULTY" != "" ]; then

clients/nimbus-el/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ SHELL ["/bin/bash", "-c"]
99

1010
RUN apt-get clean \
1111
&& apt-get update \
12-
&& apt-get install -y build-essential librocksdb-dev jq curl \
12+
&& apt-get install -y build-essential jq curl \
1313
&& apt -y upgrade
1414

1515
RUN ldd --version
1616

17-
COPY --from=source /home/user/nimbus-eth1/build/nimbus_execution_client /usr/bin/nimbus_execution_client
17+
COPY --from=source /home/user/nimbus-eth1/build/nimbus /usr/bin/nimbus
1818

19-
RUN usr/bin/nimbus_execution_client --version > /version.txt
19+
RUN usr/bin/nimbus --version > /version.txt
2020

2121
# Add genesis mapper script.
2222
ADD genesis.json /genesis.json

clients/nimbus-el/Dockerfile.git

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM debian:testing-slim AS build
55
SHELL ["/bin/bash", "-c"]
66

77
RUN apt-get clean && apt update \
8-
&& apt -y install curl build-essential git-lfs librocksdb-dev
8+
&& apt -y install curl build-essential git-lfs
99

1010
RUN ldd --version
1111

@@ -18,22 +18,22 @@ WORKDIR /nimbus-eth1
1818

1919
RUN NPROC=$(nproc); make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" V=1 update
2020

21-
RUN NPROC=$(nproc); make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:chronicles_colors=none" nimbus_execution_client && \
22-
mv build/nimbus_execution_client /usr/bin/
21+
RUN NPROC=$(nproc); make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:chronicles_colors=none" nimbus && \
22+
mv build/nimbus /usr/bin/
2323

2424
# --------------------------------- #
2525
# Starting new image to reduce size #
2626
# --------------------------------- #
2727
FROM debian:testing-slim AS deploy
2828

2929
RUN apt-get clean && apt update \
30-
&& apt -y install build-essential librocksdb-dev jq curl
30+
&& apt -y install build-essential jq curl
3131
RUN apt update && apt -y upgrade
3232

3333
RUN ldd --version
3434

35-
COPY --from=build /usr/bin/nimbus_execution_client /usr/bin/nimbus_execution_client
36-
RUN usr/bin/nimbus_execution_client --version > /version.txt
35+
COPY --from=build /usr/bin/nimbus /usr/bin/nimbus
36+
RUN usr/bin/nimbus --version > /version.txt
3737

3838
# Add genesis mapper script.
3939
ADD genesis.json /genesis.json

clients/nimbus-el/nimbus.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
# Immediately abort the script on any error encountered
4848
set -e
4949

50-
nimbus=/usr/bin/nimbus_execution_client
50+
nimbus="/usr/bin/nimbus executionClient"
5151
FLAGS="--nat:extip:0.0.0.0 --debug-dynamic-batch-size:true"
5252

5353
loglevel=DEBUG

clients/reth/reth.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ if [ -n "${HIVE_CLIQUE_PRIVATEKEY}" ] || [ -n "${HIVE_CLIQUE_PERIOD}" ]; then
153153
fi
154154

155155
# Configure RPC.
156-
FLAGS="$FLAGS --http --http.addr=0.0.0.0 --http.api=admin,debug,trace,eth,net,web3,testing"
157-
FLAGS="$FLAGS --ws --ws.addr=0.0.0.0 --ws.api=admin,debug,trace,eth,net,web3,testing"
156+
FLAGS="$FLAGS --http --http.addr=0.0.0.0 --http.api=admin,debug,trace,eth,net,txpool,web3,testing"
157+
FLAGS="$FLAGS --ws --ws.addr=0.0.0.0 --ws.api=admin,debug,trace,eth,net,txpool,web3,testing"
158158

159159
if [ "$HIVE_TERMINAL_TOTAL_DIFFICULTY" != "" ]; then
160160
JWT_SECRET="7365637265747365637265747365637265747365637265747365637265747365"

0 commit comments

Comments
 (0)