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

CCIP-2971 Optimize token/gas prices database interactions #14074

Merged
merged 4 commits into from
Aug 22, 2024
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
Update core/services/ccip/orm.go
Co-authored-by: Abdelrahman Soliman (Boda) <2677789+asoliman92@users.noreply.github.com>
  • Loading branch information
mateusz-sekara and asoliman92 authored Aug 21, 2024
commit 027a65e0e975cf7293a5ebb80a73fbd3004b23ae
2 changes: 1 addition & 1 deletion core/services/ccip/orm.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func (o *orm) pickOnlyRelevantTokensForUpdate(
tokenPricesToUpdate = append(tokenPricesToUpdate, TokenPrice{TokenAddr: tokenAddr, TokenPrice: tokenPrice})
}
o.lggr.Debugw(
"Token price eligible for database update",
"Token price eligibility for database update",
"eligibleForUpdate", eligibleForUpdate,
"token", tokenAddr,
"price", tokenPrice,
Expand Down
Loading