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"); }