Skip to content

Commit 7992291

Browse files
committed
Update comments
1 parent be6fbff commit 7992291

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

libraries/chain/include/graphene/chain/samet_fund_object.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class samet_fund_object : public abstract_object<samet_fund_object>
4747
account_id_type owner_account; ///< Owner of the fund
4848
asset_id_type asset_type; ///< Asset type in the fund
4949
share_type balance; ///< Usable amount in the fund
50-
uint32_t fee_rate = 0; ///< Fee rate
50+
uint32_t fee_rate = 0; ///< Fee rate, the demominator is GRAPHENE_SAMET_FUND_FEE_DENOM
5151
share_type unpaid_amount; ///< Unpaid amount
5252
};
5353

libraries/protocol/include/graphene/protocol/samet_fund.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ namespace graphene { namespace protocol {
3030
/**
3131
* @brief Create a new SameT Fund object
3232
* @ingroup operations
33+
*
34+
* A SameT Fund is a fund which can be used by a borrower and have to be repaid in the same transaction.
3335
*/
3436
struct samet_fund_create_operation : public base_operation
3537
{
@@ -39,7 +41,7 @@ namespace graphene { namespace protocol {
3941
account_id_type owner_account; ///< Owner of the fund
4042
asset_id_type asset_type; ///< Asset type in the fund
4143
share_type balance; ///< Usable amount in the fund
42-
uint32_t fee_rate = 0; ///< Fee rate
44+
uint32_t fee_rate = 0; ///< Fee rate, the demominator is GRAPHENE_SAMET_FUND_FEE_DENOM
4345

4446
extensions_type extensions; ///< Unused. Reserved for future use.
4547

0 commit comments

Comments
 (0)