Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix lint with
cargo xclippy
(#20001)
## Description `cargo xclippy` has `--all-features` enabled. Seeing these warnings: ``` warning: unused import: `move_vm_profiler::GasProfiler` --> external-crates/move/move-execution/v2/crates/move-vm-runtime/src/interpreter.rs:23:5 | 23 | use move_vm_profiler::GasProfiler; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `move_vm_profiler::GasProfiler` --> external-crates/move/move-execution/v1/crates/move-vm-runtime/src/interpreter.rs:23:5 | 23 | use move_vm_profiler::GasProfiler; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `move_vm_profiler::GasProfiler` --> external-crates/move/move-execution/v0/crates/move-vm-runtime/src/interpreter.rs:24:5 | 24 | use move_vm_profiler::GasProfiler; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default ``` ## Test plan CI --- ## Release notes Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required. For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates. - [ ] Protocol: - [ ] Nodes (Validators and Full nodes): - [ ] Indexer: - [ ] JSON-RPC: - [ ] GraphQL: - [ ] CLI: - [ ] Rust SDK: - [ ] REST API:
- Loading branch information