Skip to content

Commit 45394d6

Browse files
Update src/flamenco/runtime/program/fd_bpf_loader_program.c
Co-authored-by: ripatel-fd <[email protected]>
1 parent 0d54ddd commit 45394d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/flamenco/runtime/program/fd_bpf_loader_program.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2480,9 +2480,9 @@ fd_bpf_loader_program_execute( fd_exec_instr_ctx_t * ctx ) {
24802480
into the program cache. If the discriminants are incorrect, the program is marked as closed. */
24812481
if( FD_UNLIKELY( !fd_bpf_upgradeable_loader_state_is_program( program_account_state ) ) ) {
24822482
uchar migrated_yet;
2483-
if( !fd_is_non_migrating_builtin_program(program_id) &&
2484-
!fd_is_migrating_builtin_program(ctx->txn_ctx, program_id, &migrated_yet) ) {
2485-
fd_log_collector_msg_literal(ctx, "Program is not deployed");
2483+
if( !fd_is_non_migrating_builtin_program( program_id ) &&
2484+
!fd_is_migrating_builtin_program( ctx->txn_ctx, program_id, &migrated_yet ) ) {
2485+
fd_log_collector_msg_literal( ctx, "Program is not deployed" );
24862486
}
24872487
if( FD_FEATURE_ACTIVE_BANK( ctx->txn_ctx->bank, remove_accounts_executable_flag_checks ) ) {
24882488
return FD_EXECUTOR_INSTR_ERR_UNSUPPORTED_PROGRAM_ID;

0 commit comments

Comments
 (0)