set respective eth chain ids
Some checks failed
Tests / Run integration tests (pull_request) Failing after 3m35s
Tests / Run compliance tests (pull_request) Successful in 4m28s

This commit is contained in:
Roy Crihfield 2023-10-03 13:29:31 +08:00
parent b305f541a4
commit ad9e41012c
2 changed files with 2 additions and 1 deletions

View File

@ -52,6 +52,7 @@ jobs:
LEVELDB_ANCIENT: ./fixtures/chaindata/_data/small/ancient LEVELDB_ANCIENT: ./fixtures/chaindata/_data/small/ancient
LOG_FILE: ./server-log LOG_FILE: ./server-log
ETH_GENESIS_BLOCK: "0x37cbb63c7150a7b60f2878433963ed8ba7e5f82fb2683ec7a945c974e1cf4e05" ETH_GENESIS_BLOCK: "0x37cbb63c7150a7b60f2878433963ed8ba7e5f82fb2683ec7a945c974e1cf4e05"
ETH_CHAIN_ID: 41337
timeout-minutes: 30 timeout-minutes: 30
run: | run: |
./eth-statediff-service --config ./test/ci-config.toml serve & ./eth-statediff-service --config ./test/ci-config.toml serve &
@ -121,6 +122,7 @@ jobs:
LEVELDB_ANCIENT: ./fixtures/chaindata/_data/small2/ancient LEVELDB_ANCIENT: ./fixtures/chaindata/_data/small2/ancient
ETH_GENESIS_BLOCK: "0x8a3c7cddacbd1ab4ec1b03805fa2a287f3a75e43d87f4f987fcc399f5c042614" ETH_GENESIS_BLOCK: "0x8a3c7cddacbd1ab4ec1b03805fa2a287f3a75e43d87f4f987fcc399f5c042614"
ETH_CHAIN_CONFIG: ./eth-statediff-service/test/ci-chain.json ETH_CHAIN_CONFIG: ./eth-statediff-service/test/ci-chain.json
ETH_CHAIN_ID: 1212
run: | run: |
until until
ready_query='select max(version_id) from goose_db_version;' ready_query='select max(version_id) from goose_db_version;'

View File

@ -48,7 +48,6 @@ export DATABASE_PASSWORD="password"
export ETH_NODE_ID=test-node export ETH_NODE_ID=test-node
export ETH_CLIENT_NAME=test-client export ETH_CLIENT_NAME=test-client
export ETH_NETWORK_ID=test-network export ETH_NETWORK_ID=test-network
export ETH_CHAIN_ID=1212
export SERVICE_HTTP_PATH='127.0.0.1:8545' export SERVICE_HTTP_PATH='127.0.0.1:8545'
export LOG_LEVEL=debug export LOG_LEVEL=debug