Skip to content

Commit

Permalink
fix template shoudn't escape
Browse files Browse the repository at this point in the history
  • Loading branch information
lak02 committed Aug 29, 2024
1 parent 65c159f commit 59e64f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/rust_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ pub use initialize::*;
pub struct Initialize {}
pub fn handler(ctx: Context<Initialize>) -> Result<()> {
msg!("Greetings from: {{:?}}", ctx.program_id);
msg!("Greetings from: {:?}", ctx.program_id);
Ok(())
}
"#
Expand Down

0 comments on commit 59e64f3

Please sign in to comment.