From 61fcb66e9ccb590407e1582d9aa9607aed290a9f Mon Sep 17 00:00:00 2001 From: kevinheavey Date: Thu, 16 Jan 2025 02:54:04 +0400 Subject: [PATCH] missing re-exports --- sdk/program/src/loader_v4.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sdk/program/src/loader_v4.rs b/sdk/program/src/loader_v4.rs index 5c125ecbd98558..a7781dfda19887 100644 --- a/sdk/program/src/loader_v4.rs +++ b/sdk/program/src/loader_v4.rs @@ -1,5 +1,11 @@ #[deprecated(since = "2.2.0", note = "Use solana-loader-v4-interface instead")] pub use solana_loader_v4_interface::{ + instruction::{ + create_buffer, deploy, deploy_from_source, finalize, is_deploy_instruction, + is_finalize_instruction, is_retract_instruction, is_transfer_authority_instruction, + is_truncate_instruction, is_write_instruction, retract, transfer_authority, truncate, + truncate_uninitialized, write, + }, state::{LoaderV4State, LoaderV4Status}, DEPLOYMENT_COOLDOWN_IN_SLOTS, };