Closed
Conversation
feat(baseapp): Implement Krakatoa mempool ABCI handlers
Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Evan Etton <evanettoneva@gmail.com> Co-authored-by: dmytroheknt <155268677+dmytroheknt@users.noreply.github.com> Co-authored-by: Alex | Cosmos Labs <alex@cosmoslabs.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mmsqe <tqd0800210105@gmail.com> Co-authored-by: Vlad J <vladjdk@gmail.com> Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> Co-authored-by: Aaron Craelius <aaronc@users.noreply.github.com> Co-authored-by: John Letey <john@noble.xyz> Co-authored-by: Jammy Arkens <158516297+jaramyweb3@users.noreply.github.com> Co-authored-by: Evan Etton <evanettoneva@gmail.com>
Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Evan Etton <evanettoneva@gmail.com> Co-authored-by: dmytroheknt <155268677+dmytroheknt@users.noreply.github.com> Co-authored-by: Alex | Cosmos Labs <alex@cosmoslabs.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mmsqe <tqd0800210105@gmail.com> Co-authored-by: Vlad J <vladjdk@gmail.com> Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> Co-authored-by: Aaron Craelius <aaronc@users.noreply.github.com> Co-authored-by: John Letey <john@noble.xyz> Co-authored-by: Jammy Arkens <158516297+jaramyweb3@users.noreply.github.com> Co-authored-by: Evan Etton <evanettoneva@gmail.com> Co-authored-by: maradini77 <140460067+maradini77@users.noreply.github.com> Co-authored-by: viktorking7 <140458814+viktorking7@users.noreply.github.com>
chore: bstm metrics
This squash merge brings in the following changes: - IAVLX tree implementation and enhancements - Block STM metrics and improvements - Main branch updates and dependency updates - Various bug fixes and documentation updates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
iavlx/dot_graph.go
Outdated
| nodeVersion := id.Version() | ||
| if nodeVersion != curVersion { | ||
| if curVersion != 0 { | ||
| _, err = fmt.Fprintln(writer, "\t}") |
iavlx/dot_graph.go
Outdated
| } | ||
| fillColor := graphvizFillColors[nodeVersion%uint32(len(graphvizFillColors))] | ||
| textColor := graphvizTextColors[nodeVersion%uint32(len(graphvizTextColors))] | ||
| _, err = fmt.Fprintf(writer, "\tsubgraph cluster_B%d {\n\t\tlabel=\"Version %d\" color=%s style=filled fontcolor=%s node [fontcolor=%s]\n", nodeVersion, nodeVersion, fillColor, textColor, textColor) |
iavlx/dot_graph.go
Outdated
| } | ||
| curVersion = nodeVersion | ||
| if lastBranchId.IsEmpty() { | ||
| _, err = fmt.Fprintf(writer, "\t\t%s -> %s [style=invis];\n", graphvizNodeID(lastBranchId), graphvizNodeID(id)) |
iavlx/dot_graph.go
Outdated
| nodeVersion := id.Version() | ||
| if nodeVersion != curVersion { | ||
| if curVersion != 0 { | ||
| _, err = fmt.Fprintln(writer, "\t}") |
iavlx/dot_graph.go
Outdated
| } | ||
| fillColor := graphvizFillColors[nodeVersion%uint32(len(graphvizFillColors))] | ||
| textColor := graphvizTextColors[nodeVersion%uint32(len(graphvizTextColors))] | ||
| _, err = fmt.Fprintf(writer, "\tsubgraph cluster_L%d {\n\t\tlabel=\"Version %d\" color=%s fontcolor=%s style=filled node [fontcolor=%s]\n", nodeVersion, nodeVersion, fillColor, textColor, textColor) |
iavlx/dot_graph.go
Outdated
| } | ||
| curVersion = nodeVersion | ||
| if lastLeafId.IsEmpty() { | ||
| _, err = fmt.Fprintf(writer, "\t\t%s -> %s [style=invis];\n", graphvizNodeID(lastLeafId), graphvizNodeID(id)) |
iavlx/node_update.go
Outdated
| if err != nil { | ||
| return nil, err | ||
| } | ||
| newRight, err = newRight.rotateRight(ctx) |
chore: Merge from main, remove iavlx
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #25961 +/- ##
==========================================
+ Coverage 59.73% 59.84% +0.11%
==========================================
Files 966 982 +16
Lines 64372 65349 +977
==========================================
+ Hits 38450 39110 +660
- Misses 25922 26239 +317
🚀 New features to boost your workflow:
|
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Merges feat/krakatoa into main.