@@ -24,7 +24,7 @@ use std::{vec, vec::Vec};
24
24
pub trait Inspector < CTX , INTR : InterpreterTypes = EthInterpreter > {
25
25
/// Called before the interpreter is initialized.
26
26
///
27
- /// If `interp.instruction_result` is set to anything other than [interpreter:: InstructionResult::Continue] then the execution of the interpreter
27
+ /// If `interp.instruction_result` is set to anything other than [InstructionResult::Continue] then the execution of the interpreter
28
28
/// is skipped.
29
29
#[ inline]
30
30
fn initialize_interp ( & mut self , interp : & mut Interpreter < INTR > , context : & mut CTX ) {
@@ -48,7 +48,7 @@ pub trait Inspector<CTX, INTR: InterpreterTypes = EthInterpreter> {
48
48
49
49
/// Called after `step` when the instruction has been executed.
50
50
///
51
- /// Setting `interp.instruction_result` to anything other than [interpreter:: InstructionResult::Continue] alters the execution
51
+ /// Setting `interp.instruction_result` to anything other than [InstructionResult::Continue] alters the execution
52
52
/// of the interpreter.
53
53
#[ inline]
54
54
fn step_end ( & mut self , interp : & mut Interpreter < INTR > , context : & mut CTX ) {
@@ -66,7 +66,7 @@ pub trait Inspector<CTX, INTR: InterpreterTypes = EthInterpreter> {
66
66
67
67
/// Called whenever a call to a contract is about to start.
68
68
///
69
- /// InstructionResulting anything other than [interpreter:: InstructionResult::Continue] overrides the result of the call.
69
+ /// InstructionResulting anything other than [InstructionResult::Continue] overrides the result of the call.
70
70
#[ inline]
71
71
fn call ( & mut self , context : & mut CTX , inputs : & mut CallInputs ) -> Option < CallOutcome > {
72
72
let _ = context;
0 commit comments