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
fix: use batchtime from sequencer for header time, upgrade to latest go-da and go-sequencing (#1871)
Fixes#1842
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
## Release Notes
- **New Features**
- Enhanced transaction and batch management, including improved
timestamp handling.
- Improved handling of chain IDs in tests for better accuracy across
multiple chain contexts.
- **Tests**
- Added new test cases for mempool behavior across nodes and block
processing time constraints.
- Updated existing tests to improve assertions and ensure comprehensive
coverage of functionalities.
- Increased timeout duration in tests to accommodate longer processing
times.
- **Chores**
- Updated dependency versions for better compatibility and performance,
including `github.com/rollkit/go-sequencing` to version
`v0.2.1-0.20241010053131-3134457dc4e5`.
- Retraction notice added for version `v0.12.0` due to accidental
publication.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
// defaultLazyBlockTime is used only if LazyBlockTime is not configured for manager
53
52
constdefaultLazyBlockTime=60*time.Second
54
53
55
-
// defaultBatchRetrievalInterval is the interval at which the sequencer retrieves batches
56
-
constdefaultBatchRetrievalInterval=1*time.Second
57
-
58
54
// defaultMempoolTTL is the number of blocks until transaction is dropped from mempool
59
55
constdefaultMempoolTTL=25
60
56
@@ -81,6 +77,9 @@ const DAIncludedHeightKey = "da included height"
81
77
// dataHashForEmptyTxs to be used while only syncing headers from DA and no p2p to get the Data for no txs scenarios, the syncing can proceed without getting stuck forever.
0 commit comments