fix utils import

This commit is contained in:
Hardhat Chad
2024-08-24 13:59:28 +00:00
parent a6062bc6a7
commit 6cae0d773b
11 changed files with 15 additions and 24 deletions

View File

@@ -98,7 +98,7 @@ macro_rules! impl_to_bytes {
#[macro_export]
macro_rules! impl_account_from_bytes {
($struct_name:ident) => {
impl crate::utils::AccountDeserialize for $struct_name {
impl $crate::AccountDeserialize for $struct_name {
fn try_from_bytes(
data: &[u8],
) -> Result<&Self, solana_program::program_error::ProgramError> {