fix: supports batching flag name
This commit is contained in:
parent
ba72786dcb
commit
e48de472e4
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ function isStrictAddress (settings, cryptoCode, toAddress) {
|
||||||
|
|
||||||
function supportsBatching (settings, cryptoCode) {
|
function supportsBatching (settings, cryptoCode) {
|
||||||
return fetchWallet(settings, cryptoCode).then(r => {
|
return fetchWallet(settings, cryptoCode).then(r => {
|
||||||
return Promise.resolve(!!r.wallet.supportsBatching && !!configManager.getWalletSettings(cryptoCode, settings.config).allowTransactionBatching)
|
return Promise.resolve(!!r.wallet.SUPPORTS_BATCHING && !!configManager.getWalletSettings(cryptoCode, settings.config).allowTransactionBatching)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue