From 654f91b849f05ee2a7f4a450759edaa2becfedfb Mon Sep 17 00:00:00 2001 From: Sameh Abouelsaad Date: Fri, 9 May 2025 19:15:34 +0300 Subject: [PATCH] remove obsolete print --- examples/hero_vault/contract_example.rhai | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/hero_vault/contract_example.rhai b/examples/hero_vault/contract_example.rhai index b6e8422..b2811d5 100644 --- a/examples/hero_vault/contract_example.rhai +++ b/examples/hero_vault/contract_example.rhai @@ -84,10 +84,7 @@ if create_key_space(space_name, password) { let token_decimals = call_contract_read(contract, "decimals"); print("Token decimals: " + token_decimals); - // Note: In a full implementation, we would handle function arguments // For now, we're just demonstrating the basic structure - print("Note: balanceOf function requires an address argument, which is not implemented in this example"); - print("In a full implementation, we would pass the address and get the balance"); } else { print("✗ Failed to load contract"); }