Skip to content

Commit 4b69c8e

Browse files
committed
v3.2.6
* Minor fixes
1 parent cc3fa58 commit 4b69c8e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ The CryptAPI extension enables your OpenCart store to get receive payments in cr
2525
* (ETH) Ethereum
2626
* (BCH) Bitcoin Cash
2727
* (LTC) Litecoin
28-
* (XMR) Monero
28+
* (MATIC) Matic
2929
* (TRX) Tron
3030
* (BNB) Binance Coin
3131
* (USDT) USDT
3232
* (SHIB) Shiba Inu
3333
* (DOGE) Dogecoin
3434

3535

36-
among many others, for a full list of the supported cryptocurrencies and tokens, check [this page](https://cryptapi.io/pricing/).
36+
among many others, for a full list of the supported cryptocurrencies and tokens, check [this page](https://cryptapi.io/cryptocurrencies/).
3737

3838
= Auto-value conversion =
3939

@@ -114,7 +114,7 @@ If the OpenCart order total is below the chosen cryptocurrency's minimum, an err
114114

115115
#### Where can I find more documentation on your service?
116116

117-
You can find more documentation about our service on our [get started](https://cryptapi.io/get_started) page, our [technical documentation](https://docs.cryptapi.io/) page or our [resources](https://cryptapi.io/ecommerce/) page.
117+
You can find more documentation about our service on our [get started](https://cryptapi.io/get-started) page, our [technical documentation](https://docs.cryptapi.io/) page or our [resources](https://cryptapi.io/ecommerce/) page.
118118
If there's anything else you need that is not covered on those pages, please get in touch with us, we're here to help you!
119119

120120
#### Where can I get support?
@@ -171,5 +171,8 @@ The easiest and fastest way is via our live chat on our [website](https://crypta
171171
#### 3.2.5
172172
* Minor fixes
173173

174+
#### 3.2.6
175+
* Minor fixes
176+
174177
### Upgrade Notice
175178
* No breaking changes

catalog/controller/extension/payment/cryptapi.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,10 @@ public function callback()
508508

509509
$metaData = json_decode($this->model_extension_payment_cryptapi->getPaymentData($order['order_id']), true);
510510

511+
if ($data["coin"] !== $metaData['cryptapi_currency']) {
512+
die("*ok*");
513+
}
514+
511515
if ($this->isOrderPaid($order) || $data['nonce'] !== $metaData['cryptapi_nonce']) {
512516
die("*ok*");
513517
}

0 commit comments

Comments
 (0)