Skip to content

Added upload wasm function to sender #2044

Added upload wasm function to sender

Added upload wasm function to sender #2044

GitHub Actions / clippy failed Sep 16, 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.3 (4976ae480 2024-09-09)
  • cargo 1.82.0-beta.3 (8f40fc59f 2024-08-21)
  • clippy 0.1.82 (4976ae4 2024-09-09)

Annotations

Check failure on line 66 in packages/interchain/interchain-core/src/env.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/interchain/interchain-core/src/env.rs:59:1
   |
59 | / /// This trait allows to extend `cw_orch::prelude::CwEnv` with interchain capabilities
60 | | /// The center of those capabilities is the ability to follow the execution of outgoing IBC packets
61 | | /// This enables users to script chain execution even throughout IBC executions which are more asynchronous than usual transactions.
62 | | /// With the following simple syntax, users are even able to await and analyze the execution of all packets submitted in a single transac...
...  |
65 | | /// Other capabilities are offered, including :
66 | | /// - Handling multiple chains in one location (to avoid passing them as arguments each time)
   | |_
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph

Check failure on line 3 in packages/interchain/interchain-core/src/channel.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/interchain/interchain-core/src/channel.rs:1:1
  |
1 | / //! This defines types and traits associated with IBC channels.
2 | | //! Those structures are mostly used internally for dealing with channel creation and analysis
3 | | //! But they can also be used in a user application if they need specific channel description
  | |_
  |
  = 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)]`
help: add an empty line
  |
1 ~ //! This defines types and traits associated with IBC channels.
2 + ///
  |