mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-19 12:01:27 +02:00
multi: fix fmt.Errorf error wrapping
Refactor fmt.Errorf usage to correctly wrap errors instead of using non-wrapping format verbs.
This commit is contained in:
@@ -198,7 +198,7 @@ func (s *Server) Status(ctx context.Context,
|
||||
|
||||
bestBlock, err := s.cfg.NeutrinoCS.BestBlock()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("could not get best block: %v", err)
|
||||
return nil, fmt.Errorf("could not get best block: %w", err)
|
||||
}
|
||||
|
||||
peers := s.cfg.NeutrinoCS.Peers()
|
||||
|
Reference in New Issue
Block a user