From 501e127747bd8ca8238f1ef0a41144e6637ffcce Mon Sep 17 00:00:00 2001 From: nicoschtein Date: Tue, 14 Jan 2014 19:07:49 -0200 Subject: [PATCH] Added txfee_manual and txfee_auto to config file Added txfee_manual and txfee_auto to config file so you can set two different transaction fees for manual and auto payouts --- public/include/config/global.inc.dist.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/public/include/config/global.inc.dist.php b/public/include/config/global.inc.dist.php index bb9b79e8..91a14b64 100644 --- a/public/include/config/global.inc.dist.php +++ b/public/include/config/global.inc.dist.php @@ -231,11 +231,15 @@ $config['coindiffchangetarget'] = 2016; * 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. + * You can set two different transaction fees for manual and auto payouts. * * Default: - * txfee = 0.1 + * txfee_auto = 0.1 + * txfee_manual = 0.1 + * **/ -$config['txfee'] = 0.1; +$config['txfee_auto'] = 0.1; +$config['txfee_manual'] = 0.1; // Payout a block bonus to block finders, default: 0 (disabled) // This bonus is paid by the pool operator, it is not deducted from the block payout!