Skip to content

Merge branch 'master' into determenistic-finality-feature

1f4ed8c
Select commit
Loading
Failed to load commit list.
Open

New feature 25 "Deterministic Finality and Ride V9" added. #1834

Merge branch 'master' into determenistic-finality-feature
1f4ed8c
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / Semgrep OSS succeeded Apr 23, 2026 in 2s

3 new alerts

New alerts in code changed by this pull request

  • 3 warnings

Alerts not introduced by this pull request might have been detected because the code changes were too large.

See annotations below for details.

View all branch alerts.

Annotations

Check warning on line 95 in itests/config/miningtype_string.go

See this annotation in the file changed.

Code scanning / Semgrep OSS

Semgrep Finding: semgrep.rules.if-incorrect-nil-err-return Warning

WARNING: A local variable 'err' is checked for nil, but a different variable is returned.
Ensure that the returned variable is the one that was checked or properly wrapped!

Check warning on line 95 in itests/config/miningtype_string.go

See this annotation in the file changed.

Code scanning / Semgrep OSS

Semgrep Finding: semgrep.rules.if-inplace-func-incorrect-nil-err-return Warning

WARNING: A local variable 'err' is checked for nil, but a different variable is returned.
Ensure that the returned variable is the one that was checked or properly wrapped!

Check warning on line 7 in pkg/ride/ride_constructors_test.go

See this annotation in the file changed.

Code scanning / Semgrep OSS

Semgrep Finding: go.lang.security.audit.crypto.math_random.math-random-used Warning test

Do not use math/rand. Use crypto/rand instead.