fix(tests): create values of block_size #71
rust.yml
on: pull_request
Detect changes
4s
Unit Tests
2m 59s
Integration Tests
6m 30s
no_std compatibility
17s
Clippy
35s
Formatting
15s
MSRV
31s
Standalone
1m 34s
Annotations
2 errors
|
Clippy:
crates/sync/src/state.rs#L155
error: very complex type used. Consider factoring parts into `type` definitions
--> crates/sync/src/state.rs:155:10
|
155 | ) -> Option<(
| __________^
156 | | OutboundRequestId,
157 | | PeerId,
158 | | &mut Vec<RangeInclusive<Ctx::Height>>,
159 | | )> {
| |______^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#type_complexity
|
|
Clippy:
crates/sync/src/state.rs#L38
error: very complex type used. Consider factoring parts into `type` definitions
--> crates/sync/src/state.rs:38:9
|
38 | BTreeMap<OutboundRequestId, (Vec<RangeInclusive<Ctx::Height>>, PeerId)>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#type_complexity
= note: `-D clippy::type-complexity` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::type_complexity)]`
|