multi: rename lll to ll and remove unused nolint

This commit is contained in:
yyforyongyu
2024-12-04 07:20:59 +08:00
parent 48fba10562
commit d108e14c5d
3 changed files with 4 additions and 4 deletions

View File

@@ -46,10 +46,10 @@ func feeDecoder(r io.Reader, val interface{}, buf *[8]byte, l uint64) error {
}
var baseFee, feeRate uint32
if err := tlv.DUint32(r, &baseFee, buf, 4); err != nil { //nolint: gomnd,lll
if err := tlv.DUint32(r, &baseFee, buf, 4); err != nil {
return err
}
if err := tlv.DUint32(r, &feeRate, buf, 4); err != nil { //nolint: gomnd,lll
if err := tlv.DUint32(r, &feeRate, buf, 4); err != nil {
return err
}