ADD: enable batch-send on multisig wallets

This commit is contained in:
Overtorment 2020-12-15 18:47:33 +00:00
parent 4e0592bd6f
commit 2e31a3493f

View file

@ -1085,4 +1085,8 @@ export class MultisigHDWallet extends AbstractHDElectrumWallet {
if (fp.length !== 8) return false;
return /^[0-9A-F]{8}$/i.test(fp);
}
allowBatchSend() {
return true;
}
}