mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-29 07:00:55 +02:00
multi: wrap all errors
This commit is contained in:
committed by
Andras Banki-Horvath
parent
9a28a4c105
commit
648fb22f63
@@ -587,7 +587,7 @@ func DeserializePartialSignature(scalarBytes []byte) (*musig2.PartialSignature,
|
||||
|
||||
sig := &musig2.PartialSignature{}
|
||||
if err := sig.Decode(bytes.NewReader(scalarBytes)); err != nil {
|
||||
return nil, fmt.Errorf("error decoding partial signature: %v",
|
||||
return nil, fmt.Errorf("error decoding partial signature: %w",
|
||||
err)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user