mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +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),
|
||||
subType: TransactionSubType.none,
|
||||
type: TransactionType.unknown,
|
||||
otherData: null,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -293,6 +293,7 @@ class BitcoincashWallet extends Bip39HDWallet
|
|||
outputs: List.unmodifiable(outputs),
|
||||
type: type,
|
||||
subType: subType,
|
||||
otherData: null,
|
||||
);
|
||||
|
||||
txns.add(tx);
|
||||
|
|
|
@ -288,6 +288,7 @@ class EcashWallet extends Bip39HDWallet
|
|||
outputs: List.unmodifiable(outputs),
|
||||
type: type,
|
||||
subType: subType,
|
||||
otherData: null,
|
||||
);
|
||||
|
||||
txns.add(tx);
|
||||
|
|
Loading…
Reference in a new issue