fix: remove the debug output for instantiate message as it incorrectly escapes strings

This commit is contained in:
farbanas
2022-12-01 10:16:36 +01:00
parent b43dab4f83
commit 5d3550a569
@@ -87,8 +87,8 @@ pub async fn generate(args: Args) {
debug!("instantiate_msg: {:?}", instantiate_msg);
let res =
serde_json::to_string(&instantiate_msg).expect("failed to convert instantiate msg to json");
let res = serde_json::to_string(&instantiate_msg)
.expect("failed to convert instantiate msg to json");
println!("{:?}", res)
println!("{}", res)
}