Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
willyfromtheblock committed Dec 3, 2021
1 parent f1ba19f commit 8e1d1d0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/providers/activewallets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -555,12 +555,9 @@ class ActiveWallets with ChangeNotifier {
var keyMap = <int, Map>{};
for (var inputUtxo in inputTx) {
var inputKey = inputTx.indexOf(inputUtxo);
print('${inputUtxo.address} at $inputKey');
//find key to that utxo
for (var walletAddr in openWallet.addresses) {
print('${walletAddr.address} loop');
if (walletAddr.address == inputUtxo.address) {
print('request wif for ${walletAddr.address}');
var wif = await getWif(identifier, walletAddr.address);
keyMap[inputKey] = ({'wif': wif, 'addr': inputUtxo.address});
tx.addInput(inputUtxo.hash, inputUtxo.txPos);
Expand Down

0 comments on commit 8e1d1d0

Please sign in to comment.