From ee78ddccfc8641b7e48416aa5143565c730f4bca Mon Sep 17 00:00:00 2001 From: Mark Smith Date: Tue, 1 Jun 2021 14:38:09 +0100 Subject: [PATCH] updating spvClient comment --- spvclient.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/spvclient.go b/spvclient.go index 6b4c695..70a4941 100644 --- a/spvclient.go +++ b/spvclient.go @@ -27,9 +27,6 @@ func WithBlockHeaderChain(bhc BlockHeaderChain) SPVOpts { // NewSPVClient creates a new SPVClient based on the options provided. // If no BlockHeaderChain implementation is provided, the setup will return an error. -// If both a BlockHeaderChain AND a WithBlockHeaderChainStringer are provided it will -// attempt to use BlockHeaderChain first before falling back to the WithBlockHeaderChainStringer -// in the event of an error. func NewSPVClient(opts ...SPVOpts) (*SPVClient, error) { cli := &SPVClient{} for _, opt := range opts {