File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,9 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010## [ Unreleased]
1111
12- ### Fixed
13-
14- - Increase P2P pubsub max message size to match ` DefaultMaxBlobSize ` , preventing fullnode desync on large blocks
12+ ## v1.2.0
1513
1614### Changes
1715
@@ -25,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2523- Optimize metadata writes by making it async in cache store [ #3298 ] ( https://github.com/evstack/ev-node/pull/3298 )
2624- Reduce tx cache retention to avoid OOM under (really) heavy tx load [ #3299 ] ( https://github.com/evstack/ev-node/pull/3299 )
2725
26+ ### Fixed
27+
28+ - Increase P2P pubsub max message size to match ` DefaultMaxBlobSize ` , preventing fullnode desync on large blocks
29+
2830## v1.1.1
2931
3032### Changes
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ func TestSoloSequencer_SubmitBatchTxs_UnboundedByDefault(t *testing.T) {
296296 seq := newTestSequencer (t )
297297
298298 bigTx := make ([]byte , 1024 * 1024 )
299- for i := 0 ; i < 10 ; i ++ {
299+ for range 10 {
300300 _ , err := seq .SubmitBatchTxs (context .Background (), coresequencer.SubmitBatchTxsRequest {
301301 Id : []byte ("test" ),
302302 Batch : & coresequencer.Batch {Transactions : [][]byte {bigTx }},
You can’t perform that action at this time.
0 commit comments