-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
VRF-367 Fix use of getRoundRobinAddress in VRF listener #8653
Conversation
I see that you haven't updated any CHANGELOG files. Would it make sense to do so? |
All key-specific max gas price configurations MUST be the same and the chainlink/core/services/vrf/delegate.go Line 192 in 9c3f5d5
I think moving the |
This reverts commit 28d0279.
This reverts commit b8b2a22.
d0c2879
to
e336dbc
Compare
SonarQube Quality Gate Maintainability Rating on New Code (is worse than A) See analysis details on SonarQube Fix issues before they fail your Quality Gate with SonarLint in your IDE. |
* VRF-367 Fix use of getRoundRobinAddress in VRF listener * Move round robin call to inside SQLX callback * Add empty slice check * Add comments * Revert "Move round robin call to inside SQLX callback" This reverts commit 8a21518. * Move fromAddress validation to validate.go * Update job spec tests * Revert "Move fromAddress validation to validate.go" This reverts commit 28d0279. * Remove specs test changes * Fix nit * Fix integration tst * Revert "Revert "Move fromAddress validation to validate.go"" This reverts commit b8b2a22. * Adjust validation * Fix integration test model * Fix other integration test * Adjust integration test * Fix lint
…nd-robin-address-fix VRF-367 Fix use of getRoundRobinAddress in VRF listener (#8653)
Moves the call to
GetRoundRobinAddress
from outside the pipeline simulation to right before the SqlxTransaction callback function, as to make round robin more accurate in-practice.Open questions:
GetRoundRobinAddress
call to be inside the SqlxTransaction call? Or is it acceptable being right before it?