mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
whisper: display err when failing to start server in tests
This commit is contained in:
parent
5e2a42960d
commit
1ae7e60d8d
1 changed files with 1 additions and 1 deletions
|
|
@ -235,7 +235,7 @@ func initialize(t *testing.T) {
|
||||||
// we need to wait until the first node actually starts
|
// we need to wait until the first node actually starts
|
||||||
err = nodes[0].server.Start()
|
err = nodes[0].server.Start()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("failed to start the fisrt server.")
|
t.Fatal("failed to start the first server: ", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue