mirror of
https://git.wownero.com/wownero/wownerowp.git
synced 2024-08-15 01:03:16 +00:00
Merge pull request #59 from cameleater/cameleater-patch-1
update monero_payments.php
This commit is contained in:
commit
01c33481f8
1 changed files with 4 additions and 1 deletions
|
@ -583,7 +583,8 @@ class Monero_Gateway extends WC_Payment_Gateway
|
|||
|
||||
public function retriveprice($currency)
|
||||
{
|
||||
$xmr_price = file_get_contents('https://min-api.cryptocompare.com/data/price?fsym=XMR&tsyms=BTC,USD,EUR,CAD,INR,GBP,COP,SGD&extraParams=monero_woocommerce');
|
||||
$api_link = 'https://min-api.cryptocompare.com/data/price?fsym=XMR&tsyms=BTC,USD,EUR,CAD,INR,GBP,COP,SGD' . ',' . $currency . '&extraParams=monero_woocommerce';
|
||||
$xmr_price = file_get_contents($api_link);
|
||||
$price = json_decode($xmr_price, TRUE);
|
||||
if (!isset($price)) {
|
||||
$this->log->add('Monero_Gateway', '[ERROR] Unable to get the price of Monero');
|
||||
|
@ -603,6 +604,8 @@ class Monero_Gateway extends WC_Payment_Gateway
|
|||
return $price['COP'];
|
||||
case 'SGD':
|
||||
return $price['SGD'];
|
||||
case $currency:
|
||||
return $price[$currency];
|
||||
case 'XMR':
|
||||
$price = '1';
|
||||
return $price;
|
||||
|
|
Loading…
Reference in a new issue