Skip to content
Snippets Groups Projects
Commit a532ebb3 authored by Vincent Texier's avatar Vincent Texier
Browse files

Merge remote-tracking branch 'upstream/0543' into dev

parents f032a791 958e2b3f
No related branches found
No related tags found
No related merge requests found
## v0.54.3 (29th May 2019)
- Upload again to PyPi as previous release haven’t been uploaded thanks to the tag
- Transaction: fix `time` type
## v0.54.2 (27th May 2019) ## v0.54.2 (27th May 2019)
- fix Transaction document generation - fix Transaction document generation
- lock transaction document generation with a test - lock transaction document generation with a test
......
...@@ -72,9 +72,9 @@ author = 'caner & inso & vit' ...@@ -72,9 +72,9 @@ author = 'caner & inso & vit'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.54.2' version = '0.54.3'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.54.2' release = '0.54.3'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
__author__ = 'Caner Candan & inso & vit' __author__ = 'Caner Candan & inso & vit'
__version__ = '0.54.2' __version__ = '0.54.3'
__nonsense__ = 'duniter' __nonsense__ = 'duniter'
from . import api, documents, key from . import api, documents, key
...@@ -492,7 +492,7 @@ class Transaction(Document): ...@@ -492,7 +492,7 @@ class Transaction(Document):
def __init__(self, version: int, currency: str, blockstamp: Optional[BlockUID], locktime: int, issuers: List[str], def __init__(self, version: int, currency: str, blockstamp: Optional[BlockUID], locktime: int, issuers: List[str],
inputs: List[InputSource], unlocks: List[Unlock], outputs: List[OutputSource], inputs: List[InputSource], unlocks: List[Unlock], outputs: List[OutputSource],
comment: str, signatures: List[str], time: int = None) -> None: comment: str, signatures: List[str], time: Optional[int] = None) -> None:
""" """
Init Transaction instance Init Transaction instance
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment