diff --git a/common/docker/l1geth/l1geth_run.sh b/common/docker/l1geth/l1geth_run.sh index 375b0a45b..963424cb1 100755 --- a/common/docker/l1geth/l1geth_run.sh +++ b/common/docker/l1geth/l1geth_run.sh @@ -11,6 +11,6 @@ if [ ! -n "${IPC_PATH}" ];then IPC_PATH="/tmp/l1geth_path.ipc" fi -exec geth --mine --datadir "." --unlock 0 --password "./password" --allow-insecure-unlock --nodiscover \ +exec geth --mine --datadir "." --unlock 0 --miner.etherbase "0x1c5a77d9fa7ef466951b2f01f724bca3a5820b63" --password "./password" --allow-insecure-unlock --nodiscover \ --http --http.addr "0.0.0.0" --http.port 8545 --ws --ws.addr "0.0.0.0" --ws.port 8546 --ipcpath ${IPC_PATH} diff --git a/tests/integration-test/common.go b/tests/integration-test/common.go index 2e23982ba..c2fc8fb8b 100644 --- a/tests/integration-test/common.go +++ b/tests/integration-test/common.go @@ -190,6 +190,7 @@ func mockRollerConfig(t *testing.T) string { bboltDB = fmt.Sprintf("/tmp/%d_bbolt_db", timestamp) cfg.DBPath = bboltDB + assert.NoError(t, os.WriteFile(bboltDB, []byte{}, 0644)) data, err := json.Marshal(cfg) assert.NoError(t, err)