chainntnfs+routing/chainview: reduce neutrino.WaitForMoreCFHeaders value

This commit reduces the neutrino.WaitForMoreCFHeaders parameter when
instantiating a neutrino instance as a lower value will allow the tests
to complete more quickly.
This commit is contained in:
Olaoluwa Osuntokun
2017-09-13 16:45:37 +02:00
parent 95b431ff3f
commit e5f3ee0fb6
2 changed files with 2 additions and 2 deletions

View File

@ -992,7 +992,7 @@ func TestInterfaces(t *testing.T) {
ChainParams: *netParams,
ConnectPeers: []string{p2pAddr},
}
neutrino.WaitForMoreCFHeaders = time.Second * 1
neutrino.WaitForMoreCFHeaders = 250 * time.Millisecond
spvNode, err := neutrino.NewChainService(spvConfig)
if err != nil {
t.Fatalf("unable to create neutrino: %v", err)