patch: use serde patch #37
misbehaviour.yml
on: pull_request
Matrix: ics-double-sign
Matrix: ics-light-client-attack-freeze
Matrix: ics-light-client-attack
Matrix: light-client-attack
Annotations
12 errors and 100 warnings
the following explicit lifetimes could be elided: 'a:
crates/relayer-types/src/utils/pretty.rs#L75
error: the following explicit lifetimes could be elided: 'a
--> crates/relayer-types/src/utils/pretty.rs:75:6
|
75 | impl<'a, T: Display> Display for PrettySlice<'a, T> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
75 - impl<'a, T: Display> Display for PrettySlice<'a, T> {
75 + impl<T: Display> Display for PrettySlice<'_, T> {
|
|
the following explicit lifetimes could be elided: 'a:
crates/relayer-types/src/utils/pretty.rs#L26
error: the following explicit lifetimes could be elided: 'a
--> crates/relayer-types/src/utils/pretty.rs:26:6
|
26 | impl<'a, T: Display> Display for PrettyOption<'a, T> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
26 - impl<'a, T: Display> Display for PrettyOption<'a, T> {
26 + impl<T: Display> Display for PrettyOption<'_, T> {
|
|
the following explicit lifetimes could be elided: 'a:
crates/relayer-types/src/core/ics04_channel/packet.rs#L144
error: the following explicit lifetimes could be elided: 'a
--> crates/relayer-types/src/core/ics04_channel/packet.rs:144:6
|
144 | impl<'a> core::fmt::Debug for PacketData<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
144 - impl<'a> core::fmt::Debug for PacketData<'a> {
144 + impl core::fmt::Debug for PacketData<'_> {
|
|
function cannot return without recursing:
crates/relayer-types/src/core/ics03_connection/connection.rs#L410
error: function cannot return without recursing
--> crates/relayer-types/src/core/ics03_connection/connection.rs:410:5
|
410 | / fn from(value: State) -> Self {
411 | | value.into()
412 | | }
| |_____^
|
note: recursive call site
--> crates/relayer-types/src/core/ics03_connection/connection.rs:411:9
|
411 | value.into()
| ^^^^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unconditional_recursion
= note: `-D clippy::unconditional-recursion` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unconditional_recursion)]`
|
importing legacy numeric constants:
crates/relayer-types/src/core/ics03_connection/connection.rs#L9
error: importing legacy numeric constants
--> crates/relayer-types/src/core/ics03_connection/connection.rs:9:5
|
9 | u64,
| ^^^
|
= help: remove this import
= note: then `u64::<CONST>` will resolve to the respective associated constant
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `-D clippy::legacy-numeric-constants` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::legacy_numeric_constants)]`
|
the following explicit lifetimes could be elided: 'de:
crates/relayer-types/src/core/ics02_client/trust_threshold.rs#L239
error: the following explicit lifetimes could be elided: 'de
--> crates/relayer-types/src/core/ics02_client/trust_threshold.rs:239:10
|
239 | impl<'de> Visitor<'de> for StringOrInt {
| ^^^ ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
239 - impl<'de> Visitor<'de> for StringOrInt {
239 + impl Visitor<'_> for StringOrInt {
|
|
the following explicit lifetimes could be elided: 'a:
crates/relayer-types/src/utils/pretty.rs#L75
error: the following explicit lifetimes could be elided: 'a
--> crates/relayer-types/src/utils/pretty.rs:75:6
|
75 | impl<'a, T: Display> Display for PrettySlice<'a, T> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
75 - impl<'a, T: Display> Display for PrettySlice<'a, T> {
75 + impl<T: Display> Display for PrettySlice<'_, T> {
|
|
the following explicit lifetimes could be elided: 'a:
crates/relayer-types/src/utils/pretty.rs#L26
error: the following explicit lifetimes could be elided: 'a
--> crates/relayer-types/src/utils/pretty.rs:26:6
|
26 | impl<'a, T: Display> Display for PrettyOption<'a, T> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
26 - impl<'a, T: Display> Display for PrettyOption<'a, T> {
26 + impl<T: Display> Display for PrettyOption<'_, T> {
|
|
the following explicit lifetimes could be elided: 'a:
crates/relayer-types/src/core/ics04_channel/packet.rs#L144
error: the following explicit lifetimes could be elided: 'a
--> crates/relayer-types/src/core/ics04_channel/packet.rs:144:6
|
144 | impl<'a> core::fmt::Debug for PacketData<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
144 - impl<'a> core::fmt::Debug for PacketData<'a> {
144 + impl core::fmt::Debug for PacketData<'_> {
|
|
function cannot return without recursing:
crates/relayer-types/src/core/ics03_connection/connection.rs#L410
error: function cannot return without recursing
--> crates/relayer-types/src/core/ics03_connection/connection.rs:410:5
|
410 | / fn from(value: State) -> Self {
411 | | value.into()
412 | | }
| |_____^
|
note: recursive call site
--> crates/relayer-types/src/core/ics03_connection/connection.rs:411:9
|
411 | value.into()
| ^^^^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unconditional_recursion
= note: `-D clippy::unconditional-recursion` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unconditional_recursion)]`
|
importing legacy numeric constants:
crates/relayer-types/src/core/ics03_connection/connection.rs#L9
error: importing legacy numeric constants
--> crates/relayer-types/src/core/ics03_connection/connection.rs:9:5
|
9 | u64,
| ^^^
|
= help: remove this import
= note: then `u64::<CONST>` will resolve to the respective associated constant
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `-D clippy::legacy-numeric-constants` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::legacy_numeric_constants)]`
|
the following explicit lifetimes could be elided: 'de:
crates/relayer-types/src/core/ics02_client/trust_threshold.rs#L239
error: the following explicit lifetimes could be elided: 'de
--> crates/relayer-types/src/core/ics02_client/trust_threshold.rs:239:10
|
239 | impl<'de> Visitor<'de> for StringOrInt {
| ^^^ ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
239 - impl<'de> Visitor<'de> for StringOrInt {
239 + impl Visitor<'_> for StringOrInt {
|
|
light-client-attack (gaia14, gaiad, cosmos)
Ignoring setting 'auto-allocate-uids' because experimental feature 'auto-allocate-uids' is not enabled
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos):
crates/relayer-cli/src/commands/config/validate.rs#L18
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
light-client-attack (gaia14, gaiad, cosmos)
No push credentials found. Ignoring the 'useDaemon' option.
|
light-client-attack (gaia14, gaiad, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
light-client-attack (gaia14, gaiad, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
light-client-attack (gaia14, gaiad, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
light-client-attack (gaia14, gaiad, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-double-sign (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-double-sign (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-double-sign (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-double-sign (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-double-sign (interchain-security, cosmos)
Ignoring setting 'auto-allocate-uids' because experimental feature 'auto-allocate-uids' is not enabled
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos)
No push credentials found. Ignoring the 'useDaemon' option.
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-double-sign (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/validate.rs#L18
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack-freeze (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack-freeze (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack-freeze (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/validate.rs#L18
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos)
Ignoring setting 'auto-allocate-uids' because experimental feature 'auto-allocate-uids' is not enabled
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack-freeze (interchain-security, cosmos)
No push credentials found. Ignoring the 'useDaemon' option.
|
ics-light-client-attack (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack (interchain-security, cosmos)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
ics-light-client-attack (interchain-security, cosmos)
No push credentials found. Ignoring the 'useDaemon' option.
|
ics-light-client-attack (interchain-security, cosmos)
Ignoring setting 'auto-allocate-uids' because experimental feature 'auto-allocate-uids' is not enabled
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/query/packet/commitment.rs#L42
struct `PacketSeqs` is never constructed
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands.rs#L68
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L42
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/clear.rs#L50
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/config.rs#L13
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/auto.rs#L39
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|
ics-light-client-attack (interchain-security, cosmos):
crates/relayer-cli/src/commands/config/validate.rs#L18
non-local `impl` definition, `impl` blocks should be written at the same level as their item
|