nit: consistent name (#22857)

This commit is contained in:
Jack May
2022-01-31 23:46:04 -08:00
committed by GitHub
parent 9f1f7aff2b
commit 551c24da57
5 changed files with 11 additions and 7 deletions

View File

@ -307,7 +307,7 @@ fn process_instruction_common(
if program.executable()? {
debug_assert_eq!(
first_instruction_account,
1 - (invoke_context.invoke_depth() > 1) as usize,
1 - (invoke_context.get_invoke_depth() > 1) as usize,
);
if !check_loader_id(&program.owner()?) {
@ -1045,7 +1045,7 @@ impl Executor for BpfExecutor {
) -> Result<(), InstructionError> {
let log_collector = invoke_context.get_log_collector();
let compute_meter = invoke_context.get_compute_meter();
let invoke_depth = invoke_context.invoke_depth();
let invoke_depth = invoke_context.get_invoke_depth();
let mut serialize_time = Measure::start("serialize");
let program_id = *invoke_context.transaction_context.get_program_key()?;

View File

@ -28,7 +28,7 @@ pub fn process_instruction(
input: &[u8],
invoke_context: &mut InvokeContext,
) -> Result<(), InstructionError> {
if invoke_context.invoke_depth() != 1 {
if invoke_context.get_invoke_depth() != 1 {
// Not supported as an inner instruction
return Err(InstructionError::UnsupportedProgramId);
}