placeholder pubkey and comment updates

This commit is contained in:
sneurlax 2023-09-19 14:28:15 -05:00
parent 309fce399f
commit 183ac9dd27
3 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 102a596d633e00799ffd7ea82e83a02f8a14d984
Subproject commit 6f354562f2bc2e4807816cc7abc90c465afda157

View file

@ -246,8 +246,8 @@ class Transaction {
return fusion_input.Input(
prevTxid: utf8.encode(e.txid),
prevIndex: e.vout,
pubKey: utf8.encode(address.value.toString()), // TODO is this valid?
amount: amount, // TODO is this valid?
pubKey: utf8.encode(address.value.toString()), // TODO fix public key.
amount: amount, // TODO is this valid? Probably not.
);
}).toList();

View file

@ -84,7 +84,7 @@ mixin FusionWalletInterface {
return _txs
.map((tx) => tx.toFusionTransaction())
.toSet(); // TODO feed in proper public key
.toSet(); // TODO fix public key.
}
/// Returns a list of all UTXOs in the wallet for the given address.
@ -93,7 +93,7 @@ mixin FusionWalletInterface {
return _utxos
.map((utxo) => utxo.toFusionInput(
pubKey: utf8.encode('0000'))) // TODO feed in proper public key
pubKey: utf8.encode(address.toString()))) // TODO fix public key.
.toList();
}