Merge pull request #9237 from yyforyongyu/fix-btcdnotify-config

chainntnfs/btcdnotify: remove redundant config params re-assignment
This commit is contained in:
Oliver Gugger 2024-10-30 14:09:10 +01:00 committed by GitHub
commit 5da2e8dec2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -129,11 +129,6 @@ func New(config *rpcclient.ConnConfig, chainParams *chaincfg.Params,
quit: make(chan struct{}),
}
// Disable connecting to btcd within the rpcclient.New method. We
// defer establishing the connection to our .Start() method.
config.DisableConnectOnNew = true
config.DisableAutoReconnect = false
ntfnCallbacks := &rpcclient.NotificationHandlers{
OnBlockConnected: notifier.onBlockConnected,
OnBlockDisconnected: notifier.onBlockDisconnected,