From 19a2b2cfe167c3fba7157cfb57750e6043a4510c Mon Sep 17 00:00:00 2001 From: cryptochangements34 Date: Tue, 30 Jan 2018 19:35:14 -0600 Subject: [PATCH] Only use integrated address w RPC --- monero/include/monero_payments.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/monero/include/monero_payments.php b/monero/include/monero_payments.php index d4e9dc4..d3a1a1f 100644 --- a/monero/include/monero_payments.php +++ b/monero/include/monero_payments.php @@ -400,11 +400,7 @@ class Monero_Gateway extends WC_Payment_Gateway $payment_id = $this->set_paymentid_cookie(8); $currency = $order->get_currency(); $amount_xmr2 = $this->changeto($amount, $currency, $payment_id); - $address = $this->address; - if (!isset($address)) { - // If there isn't address (merchant missed that field!), $address will be the Monero address for donating :) - $address = "44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A"; - } + $uri = "monero:$address?amount=$amount?payment_id=$payment_id"; $array_integrated_address = $this->monero_daemon->make_integrated_address($payment_id); if (!isset($array_integrated_address)) {