Skip to content

Merge upstream changes from informalsystems/hermes #21

Merge upstream changes from informalsystems/hermes

Merge upstream changes from informalsystems/hermes #21

GitHub Actions / clippy-all-features failed Apr 5, 2024 in 1s

clippy-all-features

3 errors

Details

Results

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

Versions

  • rustc 1.77.1 (7cf61ebde 2024-03-27)
  • cargo 1.77.1 (e52e36006 2024-03-26)
  • clippy 0.1.77 (7cf61eb 2024-03-27)

Annotations

Check failure on line 10 in tools/integration-test/src/tests/interchain_security/ica_transfer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

unused import: `msgs::send_tx::MsgSendTx`

error: unused import: `msgs::send_tx::MsgSendTx`
  --> tools/integration-test/src/tests/interchain_security/ica_transfer.rs:10:34
   |
10 |             cosmos_tx::CosmosTx, msgs::send_tx::MsgSendTx, packet_data::InterchainAccountPacketData,
   |                                  ^^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 6 in tools/integration-test/src/tests/interchain_security/ica_transfer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

unused imports: `chain::tracking::TrackedMsgs`, `event::IbcEventWithHeight`

error: unused imports: `chain::tracking::TrackedMsgs`, `event::IbcEventWithHeight`
 --> tools/integration-test/src/tests/interchain_security/ica_transfer.rs:6:19
  |
6 | use ibc_relayer::{chain::tracking::TrackedMsgs, event::IbcEventWithHeight};
  |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^^^^^^^^^^
  |
  = note: `-D unused-imports` implied by `-D warnings`
  = help: to override `-D warnings` add `#[allow(unused_imports)]`

Check failure on line 143 in tools/integration-test/src/tests/interchain_security/ica_transfer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

cannot find function `interchain_send_tx` in this scope

error[E0425]: cannot find function `interchain_send_tx` in this scope
   --> tools/integration-test/src/tests/interchain_security/ica_transfer.rs:143:26
    |
143 |         let ica_events = interchain_send_tx(
    |                          ^^^^^^^^^^^^^^^^^^ not found in this scope
    |
help: consider importing this function
    |
4   + use ibc_test_framework::util::interchain_security::interchain_send_tx;
    |