Conversation
Co-authored-by: smartcontracts <smartcontracts@doge.org>
|
| }, | ||
| } | ||
| } catch (err) { | ||
| // Do nothing, fall back to legacy decode. |
There was a problem hiding this comment.
We should increment a Counter here; cc @annieke
|
We probably don't need this backwards compatibility if we're going to be doing a re-genesis for this upgrade. |
| // Do nothing, fall back to legacy decode. | ||
| } | ||
|
|
||
| try { |
There was a problem hiding this comment.
We don't need this decoding anymore because we don't have to be backwards compatible
There was a problem hiding this comment.
Assuming this is added to semver version 0.3.x
|
Closing this in favor of the |
|
^ now tracking here |
* feat(derive): wire up the batch span stage (#567) * fix: missing flush
Closes #567 This PR improves the performance of the historical state pruning logic. By refining how state updates are handled and written during pruning, we observe a significant reduction in write latency. Performance Benchmarks: Comparison run using [load_test](https://github.com/op-rs/op-reth/blob/541e889e886f3ffbee275a15f25f738b2242266a/crates/optimism/trie/src/db/store.rs#L3462) Metric | Current (Baseline) | Optimised (This PR) | Improvement -- | -- | -- | -- Write Time | ~107ms | ~50ms | ~2.1x Faster Total Duration | ~129ms | ~81ms | ~1.6x Faster
Closes #567 This PR improves the performance of the historical state pruning logic. By refining how state updates are handled and written during pruning, we observe a significant reduction in write latency. Performance Benchmarks: Comparison run using [load_test](https://github.com/op-rs/op-reth/blob/541e889e886f3ffbee275a15f25f738b2242266a/crates/optimism/trie/src/db/store.rs#L3462) Metric | Current (Baseline) | Optimised (This PR) | Improvement -- | -- | -- | -- Write Time | ~107ms | ~50ms | ~2.1x Faster Total Duration | ~129ms | ~81ms | ~1.6x Faster
Co-authored-by: smartcontracts smartcontracts@doge.org
Description
Adds RLP transactions - #496