We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2546168 commit adb2f5bCopy full SHA for adb2f5b
ledger/conway/rules.go
@@ -280,10 +280,10 @@ func UtxoValidateValueNotConservedUtxo(
280
if tx.AssetMint() != nil {
281
mintedAda := tx.AssetMint().Asset(common.Blake2b224{}, []byte{})
282
if mintedAda > 0 {
283
- consumedValue += uint64(mintedAda) //nolint:gosec,G115
+ consumedValue += uint64(mintedAda) //nolint:gosec // G115
284
} else if mintedAda < 0 {
285
burned := -mintedAda
286
- consumedValue -= uint64(burned) //nolint:gosec,G115
+ consumedValue -= uint64(burned) //nolint:gosec // G115
287
}
288
289
// Calculate produced value
0 commit comments