Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Increase P2P pubsub max message size to match `DefaultMaxBlobSize`, preventing fullnode desync on large blocks
## v1.2.0

### Changes

Expand All @@ -25,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Optimize metadata writes by making it async in cache store [#3298](https://github.com/evstack/ev-node/pull/3298)
- Reduce tx cache retention to avoid OOM under (really) heavy tx load [#3299](https://github.com/evstack/ev-node/pull/3299)

### Fixed

- Increase P2P pubsub max message size to match `DefaultMaxBlobSize`, preventing fullnode desync on large blocks
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

## v1.1.1

### Changes
Expand Down
1 change: 0 additions & 1 deletion block/internal/common/consts.go

This file was deleted.

2 changes: 1 addition & 1 deletion pkg/sequencers/solo/sequencer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ func TestSoloSequencer_SubmitBatchTxs_UnboundedByDefault(t *testing.T) {
seq := newTestSequencer(t)

bigTx := make([]byte, 1024*1024)
for i := 0; i < 10; i++ {
for range 10 {
_, err := seq.SubmitBatchTxs(context.Background(), coresequencer.SubmitBatchTxsRequest{
Id: []byte("test"),
Batch: &coresequencer.Batch{Transactions: [][]byte{bigTx}},
Expand Down
Loading