diff --git a/external-crates/move/move-execution/v0/crates/move-vm-runtime/src/interpreter.rs b/external-crates/move/move-execution/v0/crates/move-vm-runtime/src/interpreter.rs index 077ee45c803cd..60fe2405397aa 100644 --- a/external-crates/move/move-execution/v0/crates/move-vm-runtime/src/interpreter.rs +++ b/external-crates/move/move-execution/v0/crates/move-vm-runtime/src/interpreter.rs @@ -20,8 +20,6 @@ use move_core_types::{ vm_status::{StatusCode, StatusType}, }; use move_vm_config::runtime::VMRuntimeLimitsConfig; -#[cfg(feature = "gas-profiler")] -use move_vm_profiler::GasProfiler; use move_vm_profiler::{ profile_close_frame, profile_close_instr, profile_open_frame, profile_open_instr, }; diff --git a/external-crates/move/move-execution/v1/crates/move-vm-runtime/src/interpreter.rs b/external-crates/move/move-execution/v1/crates/move-vm-runtime/src/interpreter.rs index 1b28d91684d31..13eb1cb42168f 100644 --- a/external-crates/move/move-execution/v1/crates/move-vm-runtime/src/interpreter.rs +++ b/external-crates/move/move-execution/v1/crates/move-vm-runtime/src/interpreter.rs @@ -19,8 +19,6 @@ use move_core_types::{ vm_status::{StatusCode, StatusType}, }; use move_vm_config::runtime::VMRuntimeLimitsConfig; -#[cfg(feature = "gas-profiler")] -use move_vm_profiler::GasProfiler; use move_vm_profiler::{ profile_close_frame, profile_close_instr, profile_open_frame, profile_open_instr, }; diff --git a/external-crates/move/move-execution/v2/crates/move-vm-runtime/src/interpreter.rs b/external-crates/move/move-execution/v2/crates/move-vm-runtime/src/interpreter.rs index 8e56791718eba..e7c8d8f3df92d 100644 --- a/external-crates/move/move-execution/v2/crates/move-vm-runtime/src/interpreter.rs +++ b/external-crates/move/move-execution/v2/crates/move-vm-runtime/src/interpreter.rs @@ -19,8 +19,6 @@ use move_core_types::{ vm_status::{StatusCode, StatusType}, }; use move_vm_config::runtime::VMRuntimeLimitsConfig; -#[cfg(feature = "gas-profiler")] -use move_vm_profiler::GasProfiler; use move_vm_profiler::{ profile_close_frame, profile_close_instr, profile_open_frame, profile_open_instr, };