fix(cw_bitcoin): tx sending on non-airgap

This commit is contained in:
Czarek Nakamoto 2025-06-13 13:52:37 +02:00 committed by cyan
parent 7fba63712d
commit dc51ad1385

View file

@ -681,7 +681,7 @@ abstract class ElectrumWalletBase
); );
spendsSilentPayment = true; spendsSilentPayment = true;
isSilentPayment = true; isSilentPayment = true;
} else if (!isHardwareWallet && false) { } else if (!isHardwareWallet && keys.privateKey.isNotEmpty) {
privkey = privkey =
generateECPrivate(hd: hd, index: utx.bitcoinAddressRecord.index, network: network); generateECPrivate(hd: hd, index: utx.bitcoinAddressRecord.index, network: network);
} }