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

dencun upgrade, tests pending #35

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

dencun upgrade, tests pending

1ba1f62
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

dencun upgrade, tests pending #35

dencun upgrade, tests pending
1ba1f62
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Mar 30, 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.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 105 in src/simulation.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `revm::revm_primitives::alloy_primitives::Uint<256, 4>`

error: useless conversion to the same type: `revm::revm_primitives::alloy_primitives::Uint<256, 4>`
   --> src/simulation.rs:105:43
    |
105 |                 .map(|(key, value)| (key, value.into()))
    |                                           ^^^^^^^^^^^^ help: consider removing `.into()`: `value`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion

Check failure on line 233 in src/evm.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `revm::revm_primitives::alloy_primitives::Uint<256, 4>`

error: useless conversion to the same type: `revm::revm_primitives::alloy_primitives::Uint<256, 4>`
   --> src/evm.rs:233:37
    |
233 |         self.executor.set_gas_limit(gas_limit.into());
    |                                     ^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `gas_limit`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
    = note: `-D clippy::useless-conversion` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::useless_conversion)]`