diff --git a/internal/blocktx/processor.go b/internal/blocktx/processor.go index a13e3302a..dd2d809c9 100644 --- a/internal/blocktx/processor.go +++ b/internal/blocktx/processor.go @@ -735,7 +735,7 @@ func (p *Processor) storeTransactions(ctx context.Context, blockID uint64, block break } - bump, err := bc.NewBUMPFromMerkleTreeAndIndex(block.Height, merkleTree, uint64(txIndex)) // NOSONAR + bump, err := bc.NewBUMPFromMerkleTreeAndIndex(block.Height, merkleTree, uint64(txIndex)) // #nosec G115 if err != nil { return errors.Join(ErrFailedToCreateBUMP, fmt.Errorf("tx hash %s, block height: %d", hash.String(), block.Height), err) }