From c904c722c15821c150d64436af7c4efcbbae00bc Mon Sep 17 00:00:00 2001 From: kanoi Date: Sun, 7 Sep 2014 13:17:52 +1000 Subject: [PATCH] php - payout now 1.5% --- pool/page_payout.php | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/pool/page_payout.php b/pool/page_payout.php index 91aa92e1..af87e2e6 100644 --- a/pool/page_payout.php +++ b/pool/page_payout.php @@ -3,21 +3,12 @@ function dopayout($data, $user) { $pg = '

Payouts

'; - $pg .= '
'; - $pg .= "

We use PPLNS (pay per last N shares) with a novel fee structure.
-That is, a maximum of 2.5% and decreases with the hashrate contributed by the mining operator.
-(see table below).
-The N value used for PPLNS is the network difficulty when a block is found.

"; - $pg .= " - - - - - -
TierHashrate (% of network)Fee %
10 - 0.012.5
20.01 - 0.12
30.1 - 11.5
41+1
-

Fees are applied to each tier for each user. Fees are applied to the full block amount, plus transaction fees.
-The hashrate used in the fee calculation is the hashrate recorded during the pplns window: difficulty accepted/time.
-A flat rate of 0.5% is reserved for further development, with an initial focus on ckpool capability expansion.

"; + $pg .= ''; + $pg .= '
'; + $pg .= 'We use PPLNS (pay per last N shares)
'; + $pg .= 'Pool fee is 1.5%
'; + $pg .= 'The N value used for PPLNS is the network difficulty'; + $pg .= ' when a block is found.'; $pg .= '
'; return $pg; }