fix: master fingerprint default in create bitcoin transaction

This commit is contained in:
Konstantin Ullrich 2025-06-05 11:40:17 +02:00 committed by cyan
parent 9539327e17
commit 8e147967ad

View file

@ -374,7 +374,7 @@ abstract class BitcoinWalletBase extends ElectrumWallet with Store {
outputOrdering: BitcoinOrdering.none,
enableRBF: true,
publicKeys: tx.publicKeys!,
masterFingerprint: Uint8List(0));
masterFingerprint: Uint8List.fromList([0, 0, 0, 0]));
if (tx.shouldCommitUR()) {
tx.unsignedPsbt = transaction.asPsbtV0();