Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Audit Fixes #573

Merged
merged 24 commits into from
Jan 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
augustbleeds committed Dec 30, 2024
commit 8b5e90db0b64d13d940409f212530556e8caad32
4 changes: 2 additions & 2 deletions relayer/pkg/chainlink/ocr2/medianreport/onchainconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ func (codec OnchainConfigCodec) Decode(ctx context.Context, b []byte) (median.On
minVal := felts[1]
maxVal := felts[2]

if !(min.Cmp(max) <= 0) {
return median.OnchainConfig{}, fmt.Errorf("OnchainConfig min (%v) should not be greater than max(%v)", min, max)
if !(minVal.Cmp(maxVal) <= 0) {
return median.OnchainConfig{}, fmt.Errorf("OnchainConfig min (%v) should not be greater than max(%v)", minVal, maxVal)
}

return median.OnchainConfig{Min: minVal, Max: maxVal}, nil
Expand Down
Loading