fix(tests): set decode success threshold to 0.93 #222
Annotations
2 warnings
clippy:
core/src/decompile/analyzers/yul.rs#L420
[clippy] reported by reviewdog 🐶
<pre><code>warning: you seem to use `.enumerate()` and immediately discard the index
--> core/src/decompile/analyzers/yul.rs:420:23
|
420 | for (_, child) in vm_trace.children.iter().enumerate() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index
= note: `#[warn(clippy::unused_enumerate_index)]` on by default
help: remove the `.enumerate()` call
|
420 | for child in vm_trace.children.iter() {
| ~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
</code></pre>
Raw Output:
core/src/decompile/analyzers/yul.rs:420:23:w:
<pre><code>warning: you seem to use `.enumerate()` and immediately discard the index
--> core/src/decompile/analyzers/yul.rs:420:23
|
420 | for (_, child) in vm_trace.children.iter().enumerate() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index
= note: `#[warn(clippy::unused_enumerate_index)]` on by default
help: remove the `.enumerate()` call
|
420 | for child in vm_trace.children.iter() {
| ~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
</code></pre>
__END__
|
clippy:
core/src/snapshot/analyze.rs#L534
[clippy] reported by reviewdog 🐶
<pre><code>warning: you seem to use `.enumerate()` and immediately discard the index
--> core/src/snapshot/analyze.rs:534:23
|
534 | for (_, child) in vm_trace.children.iter().enumerate() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index
help: remove the `.enumerate()` call
|
534 | for child in vm_trace.children.iter() {
| ~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
</code></pre>
Raw Output:
core/src/snapshot/analyze.rs:534:23:w:
<pre><code>warning: you seem to use `.enumerate()` and immediately discard the index
--> core/src/snapshot/analyze.rs:534:23
|
534 | for (_, child) in vm_trace.children.iter().enumerate() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index
help: remove the `.enumerate()` call
|
534 | for child in vm_trace.children.iter() {
| ~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
</code></pre>
__END__
|