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 bd4e28e commit 2e15481Copy full SHA for 2e15481
green_cli/tx.py
@@ -219,8 +219,8 @@ def _filter_utxos(utxo_filter, utxos):
219
if address and address == utxo.get('address', None):
220
selected.append(utxo)
221
continue
222
- if txhash == '*' or txhash == utxo['txhash']:
223
- 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']:
224
225
return selected
226
0 commit comments