diff --git a/CHANGELOG.md b/CHANGELOG.md index a524130dae..dbf36269bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.1.2 ### Changes @@ -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 [#3344](https://github.com/evstack/ev-node/pull/3344). + ## v1.1.1 ### Changes diff --git a/block/internal/common/consts.go b/block/internal/common/consts.go deleted file mode 100644 index 805d0c79aa..0000000000 --- a/block/internal/common/consts.go +++ /dev/null @@ -1 +0,0 @@ -package common diff --git a/pkg/sequencers/solo/sequencer_test.go b/pkg/sequencers/solo/sequencer_test.go index 1d1274a0b6..76d38b93d0 100644 --- a/pkg/sequencers/solo/sequencer_test.go +++ b/pkg/sequencers/solo/sequencer_test.go @@ -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}},