From 686e65e512cd704ba67013b8328a35b0fadbce16 Mon Sep 17 00:00:00 2001 From: CalDescent <> Date: Sat, 7 May 2022 11:43:18 +0100 Subject: [PATCH] Fixed send coin request params --- qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js index 54cac360..72e58a24 100644 --- a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js +++ b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js @@ -2419,9 +2419,9 @@ class MultiWallet extends LitElement { const makeRequest = async () => { const opts = { - xprv58: seed58, + entropy58: seed58, receivingAddress: arrrRecipient, - ravencoinAmount: arrrAmount, + arrrAmount: arrrAmount, //feePerByte: (this.arrrFeePerByte / 1e8).toFixed(8), // Not supported in ARRR } const response = await parentEpml.request('sendArrr', opts)