From cb8cf83dd5404ef3a622790aa13e16ebff834e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Baranx?= Date: Tue, 13 Aug 2024 06:01:01 +0700 Subject: [PATCH] fix: update migration error message about world_address in Scarb.toml (#2286) update error message --- crates/sozo/ops/src/migration/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sozo/ops/src/migration/mod.rs b/crates/sozo/ops/src/migration/mod.rs index c8148c9a15..e6d913d93a 100644 --- a/crates/sozo/ops/src/migration/mod.rs +++ b/crates/sozo/ops/src/migration/mod.rs @@ -164,7 +164,7 @@ where bail!(format!( "Calculated world address ({:#x}) doesn't match provided world address. If you \ are deploying with custom seed make sure `world_address` is correctly configured \ - (or not set) `Scarb.toml`", + (or not set) in your `dojo_{profile_name}.toml`", generated_world_address )) }