@@ -50,11 +50,11 @@ define_syscall!(fn sol_get_return_data(data: *mut u8, length: u64, program_id: *
5050define_syscall ! ( fn sol_get_processed_sibling_instruction( index: u64 , meta: * mut u8 , program_id: * mut u8 , data: * mut u8 , accounts: * mut u8 ) -> u64 ) ;
5151
5252// these are deprecated - use sol_get_sysvar instead
53- define_syscall ! ( #[ deprecated( since = "3.0 .0" , note = "Use `sol_get_sysvar` with `Clock` sysvar address instead" ) ] fn sol_get_clock_sysvar( addr: * mut u8 ) -> u64 ) ;
54- define_syscall ! ( #[ deprecated( since = "3.0 .0" , note = "Use `sol_get_sysvar` with `EpochSchedule` sysvar address instead" ) ] fn sol_get_epoch_schedule_sysvar( addr: * mut u8 ) -> u64 ) ;
55- define_syscall ! ( #[ deprecated( since = "3.0 .0" , note = "Use `sol_get_sysvar` with `Rent` sysvar address instead" ) ] fn sol_get_rent_sysvar( addr: * mut u8 ) -> u64 ) ;
56- define_syscall ! ( #[ deprecated( since = "3.0 .0" , note = "Use `sol_get_sysvar` with `LastRestartSlot` sysvar address instead" ) ] fn sol_get_last_restart_slot( addr: * mut u8 ) -> u64 ) ;
57- define_syscall ! ( #[ deprecated( since = "3.0 .0" , note = "Use `sol_get_sysvar` with `EpochRewards` sysvar address instead" ) ] fn sol_get_epoch_rewards_sysvar( addr: * mut u8 ) -> u64 ) ;
53+ define_syscall ! ( #[ deprecated( since = "4.1 .0" , note = "Use `sol_get_sysvar` with `Clock` sysvar address instead" ) ] fn sol_get_clock_sysvar( addr: * mut u8 ) -> u64 ) ;
54+ define_syscall ! ( #[ deprecated( since = "4.1 .0" , note = "Use `sol_get_sysvar` with `EpochSchedule` sysvar address instead" ) ] fn sol_get_epoch_schedule_sysvar( addr: * mut u8 ) -> u64 ) ;
55+ define_syscall ! ( #[ deprecated( since = "4.1 .0" , note = "Use `sol_get_sysvar` with `Rent` sysvar address instead" ) ] fn sol_get_rent_sysvar( addr: * mut u8 ) -> u64 ) ;
56+ define_syscall ! ( #[ deprecated( since = "4.1 .0" , note = "Use `sol_get_sysvar` with `LastRestartSlot` sysvar address instead" ) ] fn sol_get_last_restart_slot( addr: * mut u8 ) -> u64 ) ;
57+ define_syscall ! ( #[ deprecated( since = "4.1 .0" , note = "Use `sol_get_sysvar` with `EpochRewards` sysvar address instead" ) ] fn sol_get_epoch_rewards_sysvar( addr: * mut u8 ) -> u64 ) ;
5858
5959// this cannot go through sol_get_sysvar but can be removed once no longer in use
6060define_syscall ! ( fn sol_get_fees_sysvar( addr: * mut u8 ) -> u64 ) ;
0 commit comments