Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: gh action for build and push docker image of astria hermes #4

Closed
wants to merge 3 commits into from

depot project id. change maintainer email

b45e8d3
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

Feature: gh action for build and push docker image of astria hermes #4

depot project id. change maintainer email
b45e8d3
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy-no-default-features failed Jun 4, 2024 in 0s

clippy-no-default-features

1 error

Details

Results

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

Versions

  • rustc 1.78.0 (9b00956e5 2024-04-29)
  • cargo 1.78.0 (54d8815d0 2024-03-26)
  • clippy 0.1.78 (9b00956 2024-04-29)

Annotations

Check failure on line 114 in crates/relayer-types/src/core/ics23_commitment/merkle.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-no-default-features

assigning the result of `Clone::clone()` may be inefficient

error: assigning the result of `Clone::clone()` may be inefficient
   --> crates/relayer-types/src/core/ics23_commitment/merkle.rs:114:21
    |
114 |                     value = subroot.clone();
    |                     ^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `value.clone_from(&subroot)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
    = note: `-D clippy::assigning-clones` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::assigning_clones)]`