multi: formatting and comment fixes

This commit is contained in:
Oliver Gugger
2022-02-07 13:58:28 +01:00
parent ffee7d1bcf
commit 895a2e497b
160 changed files with 159 additions and 260 deletions

View File

@@ -85,7 +85,6 @@ type StaticEstimator struct {
// NewStaticEstimator returns a new static fee estimator instance.
func NewStaticEstimator(feePerKW, relayFee SatPerKWeight) *StaticEstimator {
return &StaticEstimator{
feePerKW: feePerKW,
relayFee: relayFee,

View File

@@ -321,5 +321,4 @@ func TestGetCachedFee(t *testing.T) {
require.ErrorIs(t, err, tc.expectErr)
})
}
}