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
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21
2 changed files with 2 additions and 2 deletions

@ -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)

@ -497,7 +497,7 @@ var interfaceImpls = []struct {
ConnectPeers: []string{p2pAddr},
}
neutrino.WaitForMoreCFHeaders = time.Second * 1
neutrino.WaitForMoreCFHeaders = 250 * time.Millisecond
spvNode, err := neutrino.NewChainService(spvConfig)
if err != nil {
return nil, nil, err