Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
dB2510 committed Dec 5, 2024
1 parent db8f02b commit 0138619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve
- P2P: Add logs when a peer is (dis)connected. Add the reason of the disconnection when we initiate it.
- Added a Prometheus error counter metric for HTTP requests to track beacon node requests.
- Added a Prometheus error counter metric for SSE requests.
- Add Beacon DB pruning service to prune historical data beyond weak subjectivity checkpoint.

### Changed

Expand Down
1 change: 1 addition & 0 deletions beacon-chain/db/pruner/pruner.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ func (p *WeakSubjectivityPruner) run(ctx context.Context) {
case <-p.done:
return
case slot := <-ticker.C():
// Prune at the start of every epoch.
if !slots.IsEpochStart(slot) {
continue
}
Expand Down

0 comments on commit 0138619

Please sign in to comment.