diff --git a/README.md b/README.md index a0031e3..1c2b29f 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,6 @@ capsule test * `contracts` - Contracts directory. * `tests` - Contracts tests. * `build` - Contracts binaries. -* `migrations` - Deployment histories. ## Documentation diff --git a/src/generator/mod.rs b/src/generator/mod.rs index 8072056..174dce0 100644 --- a/src/generator/mod.rs +++ b/src/generator/mod.rs @@ -48,7 +48,7 @@ fn gen_project_layout>(name: String, project_path: P) -> Result<( }; fs::create_dir(&project_path) .with_context(|| format!("directory exists {:?}", &project_path))?; - for f in &["contracts", "build", "migrations"] { + for f in &["contracts", "build"] { let mut dir_path = PathBuf::new(); dir_path.push(&project_path); dir_path.push(f);