Merge pull request #407 from TheSerapher/issue-400
Adding more descriptive message for txfee
This commit is contained in:
commit
2e674fd50e
@ -133,7 +133,19 @@ $config['recaptcha']['private_key'] = 'YOUR_PRIVATE_RECAPTCHA_KEY';
|
|||||||
// Currency system used in this pool, default: `LTC`
|
// Currency system used in this pool, default: `LTC`
|
||||||
$config['currency'] = 'LTC';
|
$config['currency'] = 'LTC';
|
||||||
|
|
||||||
// Default transaction fee, added by RPC server, default: 0.1
|
/**
|
||||||
|
* Default transaction fee to apply to user transactions
|
||||||
|
*
|
||||||
|
* Explanation
|
||||||
|
* The coin daemon applies transcation fees to young coins.
|
||||||
|
* Since we are unable to find out what the exact fee was we set
|
||||||
|
* a default value here which is applied to both manual and auto payouts.
|
||||||
|
* If this is not set, no fee is applied in the transactions history but
|
||||||
|
* the user might still see them when the coins arrive.
|
||||||
|
*
|
||||||
|
* Default:
|
||||||
|
* txfee = 0.1
|
||||||
|
**/
|
||||||
$config['txfee'] = 0.1;
|
$config['txfee'] = 0.1;
|
||||||
|
|
||||||
// Payout a block bonus to block finders, default: 0 (disabled)
|
// Payout a block bonus to block finders, default: 0 (disabled)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user