vspd: Remove unnecessary dcrd error logging.

The error returned by dcrd.Client() is already very descriptive and does
not need extra context.
This commit is contained in:
jholdstock 2023-09-19 13:51:21 +01:00 committed by Jamie Holdstock
parent c4de3d5d95
commit 12e61bab65

View File

@ -111,7 +111,7 @@ func (v *Vspd) Run(ctx context.Context) {
case <-dcrdTicker.C:
_, _, err := v.dcrd.Client()
if err != nil {
v.log.Errorf("dcrd connect error: %v", err)
v.log.Error(err)
}
// Run the update function every time a block connected notification is