-
Notifications
You must be signed in to change notification settings - Fork 51
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
fix when contract reader fails on latestRoundData call #1476
Conversation
} | ||
|
||
decimalsCR = append(decimalsCR, *decimal) | ||
} else if read.ReadName == LATEST_ROUND_DATA_METHOD_NAME { | ||
latestRoundDataRes, ok := val.(*aggregator_v3_interface.LatestRoundData) | ||
if !ok { | ||
return fmt.Errorf("expected type latestRoundDataConfig for method call %v on contract %v: %w", batchCalls.latestRoundDataCalls[i/2].MethodName(), batchCalls.latestRoundDataCalls[i/2].ContractAddress(), readErr) | ||
return fmt.Errorf("expected type latestRoundDataConfig for method call %v on contract %v: %w", batchCalls.latestRoundDataCalls[j].MethodName(), batchCalls.latestRoundDataCalls[j].ContractAddress(), readErr) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could also add an assertion to the top that len(batchCalls.decimalCalls) == len(batchCalls.latestRoundDataCalls)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Quality Gate passedIssues Measures |
Motivation
ccip/core/services/ocr2/plugins/ccip/internal/pricegetter/evm.go
Line 209 in b71329d
This can happen when the contract reader fails on a LatestRoundData call when only one aggregator contract is requested in the batch call.
Solution
Use
read.ReadName