From 64c7a274665cce727b7211f3d267d058d1450844 Mon Sep 17 00:00:00 2001 From: kanoi Date: Sat, 23 Aug 2014 02:04:14 +1000 Subject: [PATCH] php - add a payout description --- pool/page_payout.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/pool/page_payout.php b/pool/page_payout.php index ae40f73e..03329397 100644 --- a/pool/page_payout.php +++ b/pool/page_payout.php @@ -2,7 +2,24 @@ # function dopayout($data, $user) { - return '

Payouts

Description'; + $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 .= '
'; + return $pg; } # function show_payout($menu, $name, $user)