Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
weezy20 committed Mar 20, 2024
1 parent 96401ed commit 215b028
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/engines/pallet_engine/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ impl TomlEditor {
.unwrap(); // workspace
let runtime_manifest = workspace_manifest.join("runtime/Cargo.toml");
let node_manifest = workspace_manifest.join("node/Cargo.toml");
// println!("{} {}", runtime_manifest.display(), node_manifest.display());
Ok(Self {
workspace: workspace_manifest.to_path_buf(),
runtime: runtime_manifest,
Expand Down
1 change: 0 additions & 1 deletion src/engines/pallet_engine/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ pub struct TemplatePalletConfig {
fn generate_pallet_structure(target: &PathBuf, pallet_name: &str) -> anyhow::Result<()> {
use fs::{create_dir, File};
let (pallet, src) = (target.join(pallet_name), target.join(pallet_name.to_string() + "/src"));
// println!("source = > {}", src.display());
create_dir(&pallet)?;
create_dir(&src)?;
File::create(format!("{}/Cargo.toml", pallet.display()))?;
Expand Down

0 comments on commit 215b028

Please sign in to comment.