Fixed send coin request params

This commit is contained in:
CalDescent 2022-05-07 11:43:18 +01:00
parent c64ee0aa11
commit 686e65e512

View File

@ -2419,9 +2419,9 @@ class MultiWallet extends LitElement {
const makeRequest = async () => { const makeRequest = async () => {
const opts = { const opts = {
xprv58: seed58, entropy58: seed58,
receivingAddress: arrrRecipient, receivingAddress: arrrRecipient,
ravencoinAmount: arrrAmount, arrrAmount: arrrAmount,
//feePerByte: (this.arrrFeePerByte / 1e8).toFixed(8), // Not supported in ARRR //feePerByte: (this.arrrFeePerByte / 1e8).toFixed(8), // Not supported in ARRR
} }
const response = await parentEpml.request('sendArrr', opts) const response = await parentEpml.request('sendArrr', opts)