mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
add missing required parameter
This commit is contained in:
parent
a3bfec5d5c
commit
b180b8632e
3 changed files with 3 additions and 0 deletions
|
@ -113,6 +113,7 @@ mixin ElectrumXParsing {
|
||||||
outputs: List.unmodifiable(outputs),
|
outputs: List.unmodifiable(outputs),
|
||||||
subType: TransactionSubType.none,
|
subType: TransactionSubType.none,
|
||||||
type: TransactionType.unknown,
|
type: TransactionType.unknown,
|
||||||
|
otherData: null,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -293,6 +293,7 @@ class BitcoincashWallet extends Bip39HDWallet
|
||||||
outputs: List.unmodifiable(outputs),
|
outputs: List.unmodifiable(outputs),
|
||||||
type: type,
|
type: type,
|
||||||
subType: subType,
|
subType: subType,
|
||||||
|
otherData: null,
|
||||||
);
|
);
|
||||||
|
|
||||||
txns.add(tx);
|
txns.add(tx);
|
||||||
|
|
|
@ -288,6 +288,7 @@ class EcashWallet extends Bip39HDWallet
|
||||||
outputs: List.unmodifiable(outputs),
|
outputs: List.unmodifiable(outputs),
|
||||||
type: type,
|
type: type,
|
||||||
subType: subType,
|
subType: subType,
|
||||||
|
otherData: null,
|
||||||
);
|
);
|
||||||
|
|
||||||
txns.add(tx);
|
txns.add(tx);
|
||||||
|
|
Loading…
Reference in a new issue