We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rm all
rm *
1 parent 9757b47 commit 1fdc839Copy full SHA for 1fdc839
green_cli/tx.py
@@ -217,8 +217,8 @@ def _filter_utxos(utxo_filter, utxos):
217
if address and address == utxo.get('address', None):
218
selected.append(utxo)
219
continue
220
- if txhash == '*' or txhash == utxo['txhash']:
221
- if not pt_idx or pt_idx == '*' or int(pt_idx) == utxo['pt_idx']:
+ if txhash == '*' or txhash == 'all' or txhash == utxo['txhash']:
+ if not pt_idx or pt_idx == 'all' or pt_idx == '*' or int(pt_idx) == utxo['pt_idx']:
222
223
return selected
224
0 commit comments