From 444d26896fe301b76709d51bf25f5ad11db475ba Mon Sep 17 00:00:00 2001 From: Saurabh Joshi Date: Fri, 29 Nov 2024 14:33:54 +0530 Subject: [PATCH] comment --- .../supra-framework/sources/vesting_without_staking.move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aptos-move/framework/supra-framework/sources/vesting_without_staking.move b/aptos-move/framework/supra-framework/sources/vesting_without_staking.move index add94170fcbe4..4853472ba2c67 100644 --- a/aptos-move/framework/supra-framework/sources/vesting_without_staking.move +++ b/aptos-move/framework/supra-framework/sources/vesting_without_staking.move @@ -185,7 +185,7 @@ module supra_framework::vesting_without_staking { } #[view] - //Return the vesting record of the shareholder + //Return the vesting record of the shareholder as a tuple `(init_amount, left_amount, last_vested_period)` public fun get_vesting_record(vesting_contract_address:address, shareholder_address:address) : (u64,u64,u64) acquires VestingContract { assert_vesting_contract_exists(vesting_contract_address);