fix: add feeMultiplier parameter
This commit is contained in:
parent
418668d232
commit
c838839522
2 changed files with 3 additions and 2 deletions
|
|
@ -82,7 +82,8 @@ function sendCoins (settings, tx) {
|
|||
function sendCoinsBatch (settings, txs, cryptoCode) {
|
||||
return fetchWallet(settings, cryptoCode)
|
||||
.then(r => {
|
||||
return r.wallet.sendCoinsBatch(r.account, txs, cryptoCode)
|
||||
const feeMultiplier = settings[`wallets_${tx.cryptoCode}_feeMultiplier`]
|
||||
return r.wallet.sendCoinsBatch(r.account, txs, cryptoCode, feeMultiplier)
|
||||
.then(res => {
|
||||
mem.clear(module.exports.balance)
|
||||
return res
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue