Fix typo (#19)

This commit is contained in:
Kostyan 2022-07-16 20:07:11 +01:00 committed by GitHub
parent 302b6ac59d
commit 24555d0448
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ pub mod account_data_matching_recommended {
use super::*;
pub fn log_message(ctx: Context<LogMessage>) -> ProgramResult {
msg!("Your acocunt balance is: {}", ctx.accounts.token.amount);
msg!("Your account balance is: {}", ctx.accounts.token.amount);
Ok(())
}
}