mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
"fix" toFusion methods
this isn't a fix really, more TODO
This commit is contained in:
parent
47fd03817a
commit
ba826d28ed
1 changed files with 3 additions and 3 deletions
|
@ -246,7 +246,7 @@ class Transaction {
|
|||
.map((e) => fusion_input.Input(
|
||||
prevTxid: utf8.encode(e.txid),
|
||||
prevIndex: e.vout,
|
||||
pubKey: utf8.encode(e.witness), // TODO fix
|
||||
pubKey: utf8.encode(e.witness ?? ""), // TODO fix
|
||||
amount: 0, // TODO fix
|
||||
))
|
||||
.toList();
|
||||
|
@ -255,8 +255,8 @@ class Transaction {
|
|||
.map((e) => fusion_output.Output(
|
||||
addr: fusion_address.Address(
|
||||
addr: e.scriptPubKeyAddress,
|
||||
publicKey: utf8.encode(e.scriptPubKey),
|
||||
derivationPath: fusion_address.DerivationPath(), // TODO fix
|
||||
publicKey: utf8.encode(e.scriptPubKey ?? ""), // TODO fix
|
||||
derivationPath: fusion_address.DerivationPath("m/49'/0'/0'/0/0"), // TODO fix
|
||||
),
|
||||
value: e.value,
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue