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

Commit f870b59

Browse files
committed
Fixed technically-incorrect variable name.
1 parent 88f2875 commit f870b59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iota/transaction/creation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def finalize(self):
351351

352352
# Check that we generated a secure bundle hash.
353353
# https://github.com/iotaledger/iota.lib.py/issues/84
354-
if any(13 in fragment for fragment in normalize(bundle_hash)):
354+
if any(13 in part for part in normalize(bundle_hash)):
355355
# Increment the legacy tag and try again.
356356
tail_transaction = self.tail_transaction # type: ProposedTransaction
357357
tail_transaction.increment_legacy_tag()

0 commit comments

Comments
 (0)