From 984616bd5ef87c012a1f448355ea42d1682c7174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Bizjak?= Date: Fri, 2 Feb 2024 15:42:04 +0100 Subject: [PATCH] Fix example. --- examples/v2_contract_deploy_init_update.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/v2_contract_deploy_init_update.rs b/examples/v2_contract_deploy_init_update.rs index acc188274..3b406ebe1 100644 --- a/examples/v2_contract_deploy_init_update.rs +++ b/examples/v2_contract_deploy_init_update.rs @@ -188,7 +188,7 @@ async fn main() -> anyhow::Result<()> { let handle = builder.send(&keys).await?; println!("Module deployment transaction {handle} submitted."); let result = handle.wait_for_finalization().await?; - println!("Module {result} deployed."); + println!("Module {} deployed.", result.module_reference); return Ok(()); } };