Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaubennassar committed Aug 30, 2023
1 parent 834a385 commit 538100a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -486,13 +486,13 @@ services:
- ../config/metrics/prometheus:/etc/prometheus

cdk-validium-sh:
container_name: zkevm-sh
container_name: cdk-validium-sh
image: cdk-validium-node
stdin_open: true
tty: true
environment:
- CDK_VALIDIUM_NODE_STATEDB_HOST=supernets-state-db
- CDK_VALIDIUM_NODE_POOL_DB_HOST=supernets-pool-db
- CDK_VALIDIUM_NODE_STATEDB_HOST=cdk-validium-state-db
- CDK_VALIDIUM_NODE_POOL_DB_HOST=cdk-validium-pool-db
volumes:
- ./config/test.node.config.toml:/app/config.toml
- ./config/test.genesis.config.json:/app/genesis.json
Expand Down
3 changes: 2 additions & 1 deletion test/e2e/datacommittee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ func TestDataCommittee(t *testing.T) {
err = os.WriteFile(cfgFile, file, 0644)
require.NoError(t, err)
// Write private key keystore file
require.NoError(t, createKeyStore(m.pk, ksFile, ksPass))
err = createKeyStore(m.pk, ksFile, ksPass)
require.NoError(t, err)
// Run DAC node
cmd := exec.Command(
"docker", "run", "-d",
Expand Down

0 comments on commit 538100a

Please sign in to comment.