mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-28 14:40:51 +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:
@@ -63,7 +63,7 @@ func NewBoltBackendCreator(dbPath,
|
||||
|
||||
db, err := kvdb.GetBoltBackend(cfg)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("could not open boltdb: %v", err)
|
||||
return nil, fmt.Errorf("could not open boltdb: %w", err)
|
||||
}
|
||||
|
||||
return db, nil
|
||||
|
Reference in New Issue
Block a user