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

Commit dfa02db

Browse files
committed
Merge branch 'develop' of github:iotaledger/iota.lib.py into develop
2 parents d67b872 + b1e3a7d commit dfa02db

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

iota/transaction/creation.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
__all__ = [
2121
'ProposedBundle',
2222
'ProposedTransaction',
23+
'Transfer',
2324
]
2425

2526

@@ -83,6 +84,13 @@ def as_tryte_string(self):
8384
return super(ProposedTransaction, self).as_tryte_string()
8485

8586

87+
Transfer = ProposedTransaction
88+
"""
89+
Follow naming convention of other libs.
90+
https://github.com/iotaledger/iota.lib.py/issues/72
91+
"""
92+
93+
8694
class ProposedBundle(Bundle, Sequence[ProposedTransaction]):
8795
"""
8896
A collection of proposed transactions, to be treated as an atomic

0 commit comments

Comments
 (0)