Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit 404e923

Browse files
committed
Fixed exception when processing non-tail txns.
1 parent 831730b commit 404e923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iota/commands/extended/get_transfers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def _execute(self, request):
9090
non_tails.add(txn.bundle_hash)
9191

9292
if non_tails:
93-
for txn in self._find_transactions(bundles=non_tails):
93+
for txn in self._find_transactions(bundles=list(non_tails)):
9494
if txn.is_tail:
9595
tails.add(txn.hash)
9696

0 commit comments

Comments
 (0)