feat(pool): update throttling logic #143
Annotations
1 error and 1 warning
large size difference between variants:
bin/rundler/src/cli/mod.rs#L60
error: large size difference between variants
--> bin/rundler/src/cli/mod.rs:60:1
|
60 | / enum Command {
61 | | /// Bundler command
62 | | ///
63 | | /// Runs the Pool, Builder, and RPC servers in a single process.
64 | | #[command(name = "node")]
65 | | Node(NodeCliArgs),
| | ----------------- the largest variant contains at least 432 bytes
... |
83 | | Builder(BuilderCliArgs),
| | ----------------------- the second-largest variant contains at least 224 bytes
84 | | }
| |_^ the entire enum is at least 432 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
= note: `-D clippy::large-enum-variant` implied by `-D warnings`
help: consider boxing the large fields to reduce the total size of the enum
|
65 | Node(Box<NodeCliArgs>),
| ~~~~~~~~~~~~~~~~
|
compliance
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|