Skip to content

add new state reqs macro to avoid state boilerplate #158

add new state reqs macro to avoid state boilerplate

add new state reqs macro to avoid state boilerplate #158

Triggered via push October 16, 2023 21:13
Status Success
Total duration 4m 52s
Artifacts

checks.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
usage of `Iterator::fold` on a type that implements `Try`: src/config/network.rs#L124
warning: usage of `Iterator::fold` on a type that implements `Try` --> src/config/network.rs:124:18 | 124 | .fold( | __________________^ 125 | | Some(*h), 126 | | |current_exchange, (next_exchange, next_amount)| { 127 | | if next_amount > current_amount_out { ... | 133 | | }, 134 | | ) | |_________________^ help: use `try_fold` instead: `try_fold(*h, |current_exchange, (next_exchange, next_amount)| ...)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold = note: `#[warn(clippy::manual_try_fold)]` on by default
build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/