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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 7 deletions

View File

@ -409,7 +409,7 @@ impl<'a> InvokeContext<'a> {
}
/// Current depth of the invocation stack
pub fn invoke_depth(&self) -> usize {
pub fn get_invoke_depth(&self) -> usize {
self.transaction_context
.get_instruction_context_stack_height()
}

View File

@ -102,7 +102,11 @@ pub fn builtin_process_instruction(
let log_collector = invoke_context.get_log_collector();
let program_id = transaction_context.get_program_key()?;
stable_log::program_invoke(&log_collector, program_id, invoke_context.invoke_depth());
stable_log::program_invoke(
&log_collector,
program_id,
invoke_context.get_invoke_depth(),
);
// Copy indices_in_instruction into a HashSet to ensure there are no duplicates
let deduplicated_indices: HashSet<usize> = indices_in_instruction.clone().collect();
@ -251,7 +255,7 @@ impl solana_sdk::program_stubs::SyscallStubs for SyscallStubs {
stable_log::program_invoke(
&log_collector,
&instruction.program_id,
invoke_context.invoke_depth(),
invoke_context.get_invoke_depth(),
);
let signers = signers_seeds

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);
}

View File

@ -20,7 +20,7 @@ fn process_instruction_with_program_logging(
) -> Result<(), InstructionError> {
let logger = invoke_context.get_log_collector();
let program_id = invoke_context.transaction_context.get_program_key()?;
stable_log::program_invoke(&logger, program_id, invoke_context.invoke_depth());
stable_log::program_invoke(&logger, program_id, invoke_context.get_invoke_depth());
let result = process_instruction(first_instruction_account, instruction_data, invoke_context);