mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
fix: master fingerprint default in create bitcoin transaction
This commit is contained in:
parent
9539327e17
commit
8e147967ad
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ abstract class BitcoinWalletBase extends ElectrumWallet with Store {
|
||||||
outputOrdering: BitcoinOrdering.none,
|
outputOrdering: BitcoinOrdering.none,
|
||||||
enableRBF: true,
|
enableRBF: true,
|
||||||
publicKeys: tx.publicKeys!,
|
publicKeys: tx.publicKeys!,
|
||||||
masterFingerprint: Uint8List(0));
|
masterFingerprint: Uint8List.fromList([0, 0, 0, 0]));
|
||||||
|
|
||||||
if (tx.shouldCommitUR()) {
|
if (tx.shouldCommitUR()) {
|
||||||
tx.unsignedPsbt = transaction.asPsbtV0();
|
tx.unsignedPsbt = transaction.asPsbtV0();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue