use the right preset in "make testnet{0,1}" [skip ci] (#932)
...and stop pretending to handle the preset in "connect_to_testnet.nims".
This commit is contained in:
parent
fe30b24aba
commit
39a893ea90
10
Makefile
10
Makefile
|
@ -119,11 +119,11 @@ clean-testnet0:
|
||||||
clean-testnet1:
|
clean-testnet1:
|
||||||
rm -rf build/data/testnet1
|
rm -rf build/data/testnet1
|
||||||
|
|
||||||
testnet0: | build deps
|
# - we're getting the preset from a testnet-specific .env file
|
||||||
NIM_PARAMS="$(NIM_PARAMS)" LOG_LEVEL="$(LOG_LEVEL)" $(ENV_SCRIPT) nim $(NIM_PARAMS) scripts/connect_to_testnet.nims $(SCRIPT_PARAMS) testnet0
|
# - try SCRIPT_PARAMS="--skipGoerliKey"
|
||||||
|
testnet0 testnet1: | build deps
|
||||||
testnet1: | build deps
|
source scripts/$@.env; \
|
||||||
NIM_PARAMS="$(NIM_PARAMS)" LOG_LEVEL="$(LOG_LEVEL)" $(ENV_SCRIPT) nim $(NIM_PARAMS) scripts/connect_to_testnet.nims $(SCRIPT_PARAMS) testnet1
|
NIM_PARAMS="$(NIM_PARAMS) -d:const_preset=$$CONST_PRESET" LOG_LEVEL="$(LOG_LEVEL)" $(ENV_SCRIPT) nim $(NIM_PARAMS) scripts/connect_to_testnet.nims $(SCRIPT_PARAMS) $@
|
||||||
|
|
||||||
clean: | clean-common
|
clean: | clean-common
|
||||||
rm -rf build/{$(TOOLS_CSV),all_tests,*_node,*ssz*,beacon_node_testnet*,state_sim,transition*}
|
rm -rf build/{$(TOOLS_CSV),all_tests,*_node,*ssz*,beacon_node_testnet*,state_sim,transition*}
|
||||||
|
|
|
@ -7,7 +7,6 @@ const
|
||||||
bootstrapYamlFileName = "boot_enr.yaml"
|
bootstrapYamlFileName = "boot_enr.yaml"
|
||||||
depositContractFileName = "deposit_contract.txt"
|
depositContractFileName = "deposit_contract.txt"
|
||||||
genesisFile = "genesis.ssz"
|
genesisFile = "genesis.ssz"
|
||||||
configFile = "config.yaml"
|
|
||||||
testnetsRepo = "eth2-testnets"
|
testnetsRepo = "eth2-testnets"
|
||||||
web3Url = "wss://goerli.infura.io/ws/v3/809a18497dd74102b5f37d25aae3c85a"
|
web3Url = "wss://goerli.infura.io/ws/v3/809a18497dd74102b5f37d25aae3c85a"
|
||||||
|
|
||||||
|
@ -68,9 +67,6 @@ cli do (skipGoerliKey {.
|
||||||
else:
|
else:
|
||||||
echo "Warning: the network metadata doesn't include a bootstrap file"
|
echo "Warning: the network metadata doesn't include a bootstrap file"
|
||||||
|
|
||||||
var preset = testnetDir / configFile
|
|
||||||
if not system.fileExists(preset): preset = "minimal"
|
|
||||||
|
|
||||||
let
|
let
|
||||||
dataDirName = testnetName.replace("/", "_")
|
dataDirName = testnetName.replace("/", "_")
|
||||||
.replace("(", "_")
|
.replace("(", "_")
|
||||||
|
@ -100,7 +96,7 @@ cli do (skipGoerliKey {.
|
||||||
rmDir dataDir
|
rmDir dataDir
|
||||||
|
|
||||||
cd rootDir
|
cd rootDir
|
||||||
exec &"""nim c {nimFlags} -d:"const_preset={preset}" -o:"{beaconNodeBinary}" beacon_chain/beacon_node.nim"""
|
exec &"""nim c {nimFlags} -o:"{beaconNodeBinary}" beacon_chain/beacon_node.nim"""
|
||||||
|
|
||||||
mkDir dumpDir
|
mkDir dumpDir
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue