@@ -641,7 +641,6 @@ pub struct CloseSplitContextStateAccounts<'a> {
641
641
}
642
642
643
643
/// Create a `InitializeMint` instruction
644
- #[ cfg( not( target_os = "solana" ) ) ]
645
644
pub fn initialize_mint (
646
645
token_program_id : & Pubkey ,
647
646
mint : & Pubkey ,
@@ -666,7 +665,6 @@ pub fn initialize_mint(
666
665
}
667
666
668
667
/// Create a `UpdateMint` instruction
669
- #[ cfg( not( target_os = "solana" ) ) ]
670
668
pub fn update_mint (
671
669
token_program_id : & Pubkey ,
672
670
mint : & Pubkey ,
@@ -699,7 +697,6 @@ pub fn update_mint(
699
697
///
700
698
/// This instruction is suitable for use with a cross-program `invoke`
701
699
#[ allow( clippy:: too_many_arguments) ]
702
- #[ cfg( not( target_os = "solana" ) ) ]
703
700
pub fn inner_configure_account (
704
701
token_program_id : & Pubkey ,
705
702
token_account : & Pubkey ,
@@ -752,7 +749,6 @@ pub fn inner_configure_account(
752
749
753
750
/// Create a `ConfigureAccount` instruction
754
751
#[ allow( clippy:: too_many_arguments) ]
755
- #[ cfg( not( target_os = "solana" ) ) ]
756
752
pub fn configure_account (
757
753
token_program_id : & Pubkey ,
758
754
token_account : & Pubkey ,
@@ -985,7 +981,6 @@ pub fn inner_withdraw(
985
981
986
982
/// Create a `Withdraw` instruction
987
983
#[ allow( clippy:: too_many_arguments) ]
988
- #[ cfg( not( target_os = "solana" ) ) ]
989
984
pub fn withdraw (
990
985
token_program_id : & Pubkey ,
991
986
token_account : & Pubkey ,
@@ -1081,7 +1076,6 @@ pub fn inner_transfer(
1081
1076
1082
1077
/// Create a `Transfer` instruction with regular (no-fee) proof
1083
1078
#[ allow( clippy:: too_many_arguments) ]
1084
- #[ cfg( not( target_os = "solana" ) ) ]
1085
1079
pub fn transfer (
1086
1080
token_program_id : & Pubkey ,
1087
1081
source_token_account : & Pubkey ,
@@ -1175,7 +1169,6 @@ pub fn inner_transfer_with_fee(
1175
1169
1176
1170
/// Create a `Transfer` instruction with fee proof
1177
1171
#[ allow( clippy:: too_many_arguments) ]
1178
- #[ cfg( not( target_os = "solana" ) ) ]
1179
1172
pub fn transfer_with_fee (
1180
1173
token_program_id : & Pubkey ,
1181
1174
source_token_account : & Pubkey ,
@@ -1248,7 +1241,6 @@ pub fn inner_apply_pending_balance(
1248
1241
}
1249
1242
1250
1243
/// Create a `ApplyPendingBalance` instruction
1251
- #[ cfg( not( target_os = "solana" ) ) ]
1252
1244
pub fn apply_pending_balance (
1253
1245
token_program_id : & Pubkey ,
1254
1246
token_account : & Pubkey ,
0 commit comments