Skip to content

Commit

Permalink
cli: Fix shell command failing due to outdated program initializati…
Browse files Browse the repository at this point in the history
…on (#3351)
  • Loading branch information
acheroncrypto authored Nov 8, 2024
1 parent 0109f4a commit 8dca0d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ The minor version will be incremented upon a breaking change and the patch versi
- cli: Use OS-agnostic paths ([#3307](https://github.com/coral-xyz/anchor/pull/3307)).
- avm: Use `rustc 1.79.0` when installing versions older than v0.31 ([#3315](https://github.com/coral-xyz/anchor/pull/3315)).
- cli: Fix priority fee calculation causing panic on localnet ([#3318](https://github.com/coral-xyz/anchor/pull/3318)).
- cli: Fix `shell` command failing due to outdated program initialization ([#3351](https://github.com/coral-xyz/anchor/pull/3351)).

### Breaking

Expand Down
7 changes: 3 additions & 4 deletions cli/src/rust_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use crate::{
};
use anyhow::Result;
use clap::{Parser, ValueEnum};
use heck::{ToPascalCase, ToSnakeCase};
use heck::{ToLowerCamelCase, ToPascalCase, ToSnakeCase};
use solana_sdk::{
pubkey::Pubkey,
signature::{read_keypair_file, write_keypair_file, Keypair},
Expand Down Expand Up @@ -590,11 +590,10 @@ anchor.setProvider(provider);
write!(
&mut eval_string,
r#"
anchor.workspace.{} = new anchor.Program({}, new PublicKey("{}"), provider);
anchor.workspace.{} = new anchor.Program({}, provider);
"#,
program.name.to_pascal_case(),
program.name.to_lower_camel_case(),
serde_json::to_string(&program.idl)?,
program.program_id
)?;
}

Expand Down

0 comments on commit 8dca0d6

Please sign in to comment.