mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-07 19:30:46 +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:
@@ -196,7 +196,7 @@ func (p *JusticeDescriptor) assembleJusticeTxn(txWeight int64,
|
||||
if err := vm.Execute(); err != nil {
|
||||
log.Debugf("Failed to validate justice transaction: %s",
|
||||
spew.Sdump(justiceTxn))
|
||||
return nil, fmt.Errorf("error validating TX: %v", err)
|
||||
return nil, fmt.Errorf("error validating TX: %w", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user