From 590fae0e0f09a09884d3259958cf1305337cdcaf Mon Sep 17 00:00:00 2001 From: Ikrk Date: Wed, 31 Jan 2024 11:18:15 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20Import=20ToAccountInfo=20trait?= =?UTF-8?q?=20in=20fuzzing=20prelude?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/client/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/client/src/lib.rs b/crates/client/src/lib.rs index 3ba33307..8886e8d2 100644 --- a/crates/client/src/lib.rs +++ b/crates/client/src/lib.rs @@ -21,9 +21,9 @@ pub use anyhow::{self, Error}; pub mod fuzzing { pub use super::{ anchor_lang, anchor_lang::system_program::ID as SYSTEM_PROGRAM_ID, - anchor_lang::InstructionData, anchor_lang::ToAccountMetas, fuzz_trd, - solana_sdk::account::Account, solana_sdk::transaction::Transaction, Instruction, Keypair, - Pubkey, Signer, TempClone, + anchor_lang::InstructionData, anchor_lang::ToAccountInfo, anchor_lang::ToAccountMetas, + fuzz_trd, solana_sdk::account::Account, solana_sdk::transaction::Transaction, Instruction, + Keypair, Pubkey, Signer, TempClone, }; pub use anchor_client::anchor_lang::solana_program::hash::Hash; pub use anchor_lang::solana_program::instruction::AccountMeta;