Skip to content

Allow setting private key for sender (#482) #2011

Allow setting private key for sender (#482)

Allow setting private key for sender (#482) #2011

GitHub Actions / clippy failed Sep 9, 2024 in 0s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.82.0-beta.2 (c7c49f44a 2024-09-04)
  • cargo 1.82.0-beta.2 (8f40fc59f 2024-08-21)
  • clippy 0.1.82 (c7c49f4 2024-09-04)

Annotations

Check failure on line 97 in packages/cw-orch-core/src/contract/paths.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

first doc comment paragraph is too long

error: first doc comment paragraph is too long
  --> packages/cw-orch-core/src/contract/paths.rs:96:5
   |
96 | /     /// Creates an [`ArtifactsDir`] from the current workspace by searching the file tree for a directory named `artifacts`.
97 | |     /// It does this by reading the CARGO_MANIFEST_DIR environment variable and going up the file tree until it finds the `artifacts` dir...
   | |____^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
help: add an empty line
   |
96 ~     /// Creates an [`ArtifactsDir`] from the current workspace by searching the file tree for a directory named `artifacts`.
97 +     ///
   |

Check failure on line 245 in packages/cw-orch-core/src/contract/interface_traits.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

first doc comment paragraph is too long

error: first doc comment paragraph is too long
   --> packages/cw-orch-core/src/contract/interface_traits.rs:243:1
    |
243 | / /// Trait to implement on the contract to enable it to be uploaded
244 | | /// Should return [`WasmPath`](crate::contract::interface_traits::WasmPath) for `Chain = Daemon`
245 | | /// and [`Box<&dyn Contract>`] for `Chain = Mock`
    | |_
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
    = note: `-D clippy::too-long-first-doc-paragraph` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::too_long_first_doc_paragraph)]`