File tree 2 files changed +4
-2
lines changed
chain/include/graphene/chain
protocol/include/graphene/protocol
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class samet_fund_object : public abstract_object<samet_fund_object>
47
47
account_id_type owner_account; // /< Owner of the fund
48
48
asset_id_type asset_type; // /< Asset type in the fund
49
49
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
51
51
share_type unpaid_amount; // /< Unpaid amount
52
52
};
53
53
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ namespace graphene { namespace protocol {
30
30
/* *
31
31
* @brief Create a new SameT Fund object
32
32
* @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.
33
35
*/
34
36
struct samet_fund_create_operation : public base_operation
35
37
{
@@ -39,7 +41,7 @@ namespace graphene { namespace protocol {
39
41
account_id_type owner_account; // /< Owner of the fund
40
42
asset_id_type asset_type; // /< Asset type in the fund
41
43
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
43
45
44
46
extensions_type extensions; // /< Unused. Reserved for future use.
45
47
You can’t perform that action at this time.
0 commit comments