From be8db649692efa3b39b8ca94b6e08b16a3261739 Mon Sep 17 00:00:00 2001 From: xisi Date: Mon, 4 Aug 2014 17:53:43 -0400 Subject: [PATCH] adds pool fee to public api --- include/pages/api/public.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/pages/api/public.inc.php b/include/pages/api/public.inc.php index c6b128d6..a37c80f5 100644 --- a/include/pages/api/public.inc.php +++ b/include/pages/api/public.inc.php @@ -19,7 +19,8 @@ echo json_encode( 'workers' => $worker->getCountAllActiveWorkers(), 'shares_this_round' => $aShares['valid'], 'last_block' => $aLastBlock['height'], - 'network_hashrate' => $dNetworkHashrate + 'network_hashrate' => $dNetworkHashrate, + 'fee' => $config['fees'] ) );