fix: supports batching flag name

This commit is contained in:
José Oliveira 2022-02-17 22:23:15 +00:00
parent ba72786dcb
commit e48de472e4

View file

@ -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)
}) })
} }