-
Notifications
You must be signed in to change notification settings - Fork 3.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
feat(store/v2): full iavl/v2 support [WIP] #22838
Conversation
Closing in favor of #23131 |
now := time.Now() | ||
defer s.telemetry.MeasureSince(now, "root_store", "commit") | ||
} | ||
now := time.Now() |
Check warning
Code scanning / CodeQL
Calling the system time Warning
@@ -303,15 +305,17 @@ | |||
// background pruning process (iavl v1 for example) which must be paused during the commit | |||
s.pruningManager.PausePruning() | |||
|
|||
var cInfo *proof.CommitInfo | |||
st := time.Now() |
Check warning
Code scanning / CodeQL
Calling the system time Warning
if err := s.stateCommitment.WriteChangeset(cs); err != nil { | ||
return nil, fmt.Errorf("failed to write batch to SC store: %w", err) | ||
} | ||
|
||
writeDur := time.Since(st) | ||
st = time.Now() |
Check warning
Code scanning / CodeQL
Calling the system time Warning
Description
Closes: #XXXX
Author Checklist
All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.
I have...
!
in the type prefix if API or client breaking changeCHANGELOG.md
Reviewers Checklist
All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.
Please see Pull Request Reviewer section in the contributing guide for more information on how to review a pull request.
I have...