Skip to content

Commit

Permalink
Remove custom trusted KZG setup (eth-educators#1689)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne authored Dec 30, 2023
1 parent ae05abb commit 5fec7fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions besu/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ if [[ "${NETWORK}" =~ ^https?:// ]]; then
bootnodes="$(paste -s -d, "/var/lib/besu/testnet/${config_dir}/bootnode.txt")"
set +e
__network="--genesis-file=/var/lib/besu/testnet/${config_dir}/besu.json --bootnodes=${bootnodes} \
--kzg-trusted-setup=/var/lib/besu/testnet/${config_dir}/trusted_setup.txt --Xfilter-on-enr-fork-id=true \
--rpc-http-api=ADMIN,CLIQUE,MINER,ETH,NET,DEBUG,TXPOOL,ENGINE,TRACE,WEB3"
--Xfilter-on-enr-fork-id=true --rpc-http-api=ADMIN,CLIQUE,MINER,ETH,NET,DEBUG,TXPOOL,ENGINE,TRACE,WEB3"
else
__network="--network ${NETWORK} --rpc-http-api WEB3,ETH,NET"
fi
Expand Down
3 changes: 1 addition & 2 deletions lodestar/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ if [[ "${NETWORK}" =~ ^https?:// ]]; then
bootnodes="$(paste -s -d, "/var/lib/lodestar/consensus/testnet/${config_dir}/bootstrap_nodes.txt")"
set +e
__network="--paramsFile=/var/lib/lodestar/consensus/testnet/${config_dir}/config.yaml --genesisStateFile=/var/lib/lodestar/consensus/testnet/${config_dir}/genesis.ssz \
--bootnodes=${bootnodes} --network.connectToDiscv5Bootnodes --chain.trustedSetup=/var/lib/lodestar/consensus/testnet/${config_dir}/trusted_setup.txt \
--rest.namespace=*"
--bootnodes=${bootnodes} --network.connectToDiscv5Bootnodes --rest.namespace=*"
else
__network="--network ${NETWORK}"
fi
Expand Down
2 changes: 1 addition & 1 deletion teku/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if [[ "${NETWORK}" =~ ^https?:// ]]; then
__rapid_sync="--initial-state=/var/lib/teku/testnet/${config_dir}/genesis.ssz --ignore-weak-subjectivity-period-enabled=true"
__network="--network=/var/lib/teku/testnet/${config_dir}/config.yaml --p2p-discovery-bootnodes=${bootnodes} \
--data-storage-non-canonical-blocks-enabled=true --Xlog-include-p2p-warnings-enabled \
--metrics-block-timing-tracking-enabled --Xmetrics-blob-sidecars-storage-enabled=true --Xtrusted-setup=/var/lib/teku/testnet/${config_dir}/trusted_setup.txt \
--metrics-block-timing-tracking-enabled --Xmetrics-blob-sidecars-storage-enabled=true \
--Xpeer-rate-limit=100000 --Xpeer-request-limit=1000"
else
__network="--network=${NETWORK}"
Expand Down

0 comments on commit 5fec7fa

Please sign in to comment.