From f8e49dd3f7090a8a0785a850d8d4f815daf9c3dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Mei=C3=9Fner?= Date: Wed, 4 Jun 2025 08:52:08 +0200 Subject: [PATCH] Fix - Reformulates code comment in natural language (#6337) Reformulates code comment in natural language. (cherry picked from commit 0c1d60ddd314a6c6bdc40d3597728202e672cfe9) --- programs/bpf_loader/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/bpf_loader/src/lib.rs b/programs/bpf_loader/src/lib.rs index 43df8486c10..2ad1bf81566 100644 --- a/programs/bpf_loader/src/lib.rs +++ b/programs/bpf_loader/src/lib.rs @@ -1377,7 +1377,7 @@ fn common_extend_program( const PROGRAM_DATA_ACCOUNT_INDEX: IndexOfAccount = 0; const PROGRAM_ACCOUNT_INDEX: IndexOfAccount = 1; const AUTHORITY_ACCOUNT_INDEX: IndexOfAccount = 2; - // let system_program_account_index = if check_authority { 3 } else { 2 }; + // The unused `system_program_account_index` is 3 if `check_authority` and 2 otherwise. let optional_payer_account_index = if check_authority { 4 } else { 3 }; if additional_bytes == 0 {