You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* main:
chore: minor deduplication (#3139)
refactor(store,cache)!: optimize cache restore as O(1) (#3134)
ci: remove spamoor results from benchmark results per PR (#3138)
build(deps): Bump rollup from 4.22.4 to 4.59.0 in /docs in the npm_and_yarn group across 1 directory (#3136)
fix(block): fix blocktime timer usage (#3137)
build(deps): bump core v1.0.0 (#3135)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## [Unreleased]
11
11
12
+
## v1.0.0
13
+
12
14
### Added
13
15
14
16
- Add disaster recovery for sequencer
@@ -21,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
23
By using one or the other, you are losing the ability to rollback or replay transactions earlier than `HEAD-n`.
22
24
When using _classic pruning_, you aren't able to fetch blocks prior to `HEAD-n`.
23
25
26
+
### Fixed
27
+
28
+
- Fix block timer to account for execution time. Previously, the block timer reset to the full `block_time` duration after `ProduceBlock` completed, making the effective interval `block_time + execution_time`. Now the timer subtracts elapsed execution time so blocks are produced at the configured cadence.
29
+
24
30
### Changes
25
31
26
32
- Store pending blocks separately from executed blocks key. [#3073](https://github.com/evstack/ev-node/pull/3073)
0 commit comments