diff --git a/p2p/pex_reactor_test.go b/p2p/pex_reactor_test.go index 2ce131a05..0748486e5 100644 --- a/p2p/pex_reactor_test.go +++ b/p2p/pex_reactor_test.go @@ -120,7 +120,7 @@ func TestPEXReactorReceive(t *testing.T) { dir, err := ioutil.TempDir("", "pex_reactor") require.Nil(err) defer os.RemoveAll(dir) - book := NewAddrBook(dir+"addrbook.json", true) + book := NewAddrBook(dir+"addrbook.json", false) book.SetLogger(log.TestingLogger()) r := NewPEXReactor(book) diff --git a/rpc/grpc/grpc_test.go b/rpc/grpc/grpc_test.go index cc8c9951c..b62006a19 100644 --- a/rpc/grpc/grpc_test.go +++ b/rpc/grpc/grpc_test.go @@ -13,7 +13,7 @@ import ( ) func TestMain(m *testing.M) { - // start a tendermint node (and merkleeyes) in the background to test against + // start a tendermint node in the background to test against app := dummy.NewDummyApplication() node := rpctest.StartTendermint(app) code := m.Run()