mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-02-11 05:56:50 +00:00
Adds the `--web3-url` launch argument to `nimbus_light_client` to enable driving the EL with the optimistic head obtained from LC sync protocol. This will keep issuing `newPayload` / `forkChoiceUpdated` requests for new blocks, marking them as optimistic. `ZERO_HASH` is reported as the finalized block for now.
13 lines
566 B
Bash
13 lines
566 B
Bash
GETH_PORT_OFFSET=100
|
|
GETH_BINARY="${GETH_BINARY:-"${HOME}/go-ethereum/build/bin/geth"}"
|
|
GETH_NUM_NODES="${GETH_NUM_NODES:-4}"
|
|
GETH_BINARY="${GETH_BINARY:-${HOME}/go-ethereum/build/bin/geth}"
|
|
GETH_BASE_HTTP_PORT="${GETH_BASE_HTTP_PORT:-8550}"
|
|
GETH_NET_BASE_PORT="${GETH_NET_BASE_PORT:-30303}"
|
|
GETH_HTTP_BASE_PORT="${GETH_HTTP_BASE_PORT:-8545}"
|
|
GETH_WS_BASE_PORT="${GETH_WS_BASE_PORT:-8546}"
|
|
GETH_AUTH_RPC_PORT_BASE="${GETH_AUTH_RPC_PORT_BASE:-8551}"
|
|
PORT_OFFSET="${PORT_OFFSET:-100}"
|
|
GENESISJSON="${GENESISJSON:-${BASEDIR}/geth_genesis.json}"
|
|
DISCOVER="--nodiscover"
|