-
Notifications
You must be signed in to change notification settings - Fork 10
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
ref: oracle rename #294
base: develop
Are you sure you want to change the base?
ref: oracle rename #294
Conversation
…x in when nst rounds grows
…py for simulation
…test, embedded aggAlgorithm, validate msg
…rices with same detID
…keys before nonce insert
…ments to explain why map iteration is safe
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
} | ||
|
||
// praepareRounds prepares the rounds for the next block, and returns the feederIDs of the rounds that are open on next block | ||
func (f *FeederManager) prepareRounds(ctx sdk.Context) []int64 { | ||
logger := f.k.Logger(ctx) | ||
feederIDs := make([]int64, 0) | ||
height := ctx.BlockHeight() | ||
// it's safe to range map directly, this is just used to update memory state | ||
for _, r := range f.rounds { | ||
if open := r.PrepareForNextBlock(ctx.BlockHeight()); open { |
Check warning
Code scanning / CodeQL
Iteration over map Warning
r.FinalPrice() | ||
r.status = roundStatusClosed | ||
} | ||
// close all quotingWindow to skip current rounds' 'handlQuotingMisBehavior' | ||
if f.forceSeal { | ||
r.closeQuotingWindow() | ||
} | ||
} | ||
} | ||
|
||
func (f *FeederManager) commitRounds(ctx sdk.Context) { | ||
logger := f.k.Logger(ctx) | ||
height := ctx.BlockHeight() | ||
successFeederIDs := make([]string, 0) | ||
// it's safe to range map directly since the sate update is independent for each feederID, however we use sortedFeederIDs to keep the order of logs | ||
// this can be replaced by map iteration directly when better performance is needed | ||
for _, feederID := range f.sortedFeederIDs { | ||
r := f.rounds[feederID] |
Check warning
Code scanning / CodeQL
Iteration over map Warning
2b0e8a1
to
665a141
Compare
Description
rename 'createprice' with 'pricefeed'
this PR is based on #275 , should be merged after.
NOTE:
Closes #XXX