multi: wrap all errors

This commit is contained in:
Oliver Gugger
2024-03-07 13:19:28 +01:00
committed by Andras Banki-Horvath
parent 9a28a4c105
commit 648fb22f63
60 changed files with 138 additions and 133 deletions

View File

@@ -226,7 +226,7 @@ func (b *Batcher) BatchFund(ctx context.Context,
"chan ID")
}
} else if _, err := rand.Read(pendingChanID[:]); err != nil {
return nil, fmt.Errorf("error making temp chan ID: %v",
return nil, fmt.Errorf("error making temp chan ID: %w",
err)
}
@@ -265,7 +265,7 @@ func (b *Batcher) BatchFund(ctx context.Context,
},
})
if err != nil {
return nil, fmt.Errorf("error parsing channel %d: %v",
return nil, fmt.Errorf("error parsing channel %d: %w",
idx, err)
}