Tiny update.

This commit is contained in:
Hüseyin Uslu 2014-01-24 00:38:28 +02:00
parent 0639af54b3
commit b518ce0799

View File

@ -22,15 +22,15 @@ $data = array(
'stratumport' => $config[gettingstarted][stratumport],
// payments
'payout_system' => $config[payout_system],
'confirmations' => $config['confirmations'],
'confirmations' => $config[confirmations],
'min_ap_threshold' => $config[ap_threshold][min],
'max_ap_threshold' => $config[ap_threshold][max],
'reward_type' => $config[payout_system] == 'pps' ? $config['pps']['reward']['type'] : $config['reward_type'],
'reward' => $config[payout_system] == 'pps' ? $config['pps']['reward']['default'] : $config['reward'],
// fees
'txfee' => $config['txfee_manual'], // make it backwards compatible
'txfee_manual' => $config['txfee_manual'],
'txfee_auto' => $config['txfee_auto'],
'txfee' => $config[txfee_manual], // make it backwards compatible
'txfee_manual' => $config[txfee_manual],
'txfee_auto' => $config[txfee_auto],
'fees' => $config[fees]
);