Skip to content

Commit adb2f5b

Browse files
authored
chore: fix comments for golangci-lint (#1314)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 2546168 commit adb2f5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ledger/conway/rules.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,10 +280,10 @@ func UtxoValidateValueNotConservedUtxo(
280280
if tx.AssetMint() != nil {
281281
mintedAda := tx.AssetMint().Asset(common.Blake2b224{}, []byte{})
282282
if mintedAda > 0 {
283-
consumedValue += uint64(mintedAda) //nolint:gosec,G115
283+
consumedValue += uint64(mintedAda) //nolint:gosec // G115
284284
} else if mintedAda < 0 {
285285
burned := -mintedAda
286-
consumedValue -= uint64(burned) //nolint:gosec,G115
286+
consumedValue -= uint64(burned) //nolint:gosec // G115
287287
}
288288
}
289289
// Calculate produced value

0 commit comments

Comments
 (0)