Improve Instruction::new deprecation warning

This commit is contained in:
Michael Vines 2021-03-15 14:59:10 -07:00
parent 430ed6d774
commit 8567b41d5f
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ pub struct Instruction {
impl Instruction {
#[deprecated(
since = "1.6.0",
note = "Please use another `Instruction constructor instead"
note = "Please use another Instruction constructor instead, such as `Instruction::new_with_bincode`"
)]
pub fn new<T: Serialize>(program_id: Pubkey, data: &T, accounts: Vec<AccountMeta>) -> Self {
Self::new_with_bincode(program_id, data, accounts)