Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DuniterPy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
DuniterPy
Commits
a532ebb3
Commit
a532ebb3
authored
6 years ago
by
Vincent Texier
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'upstream/0543' into dev
parents
f032a791
958e2b3f
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
docs/conf.py
+2
-2
2 additions, 2 deletions
docs/conf.py
duniterpy/__init__.py
+1
-1
1 addition, 1 deletion
duniterpy/__init__.py
duniterpy/documents/transaction.py
+1
-1
1 addition, 1 deletion
duniterpy/documents/transaction.py
with
8 additions
and
4 deletions
CHANGELOG.md
+
4
−
0
View file @
a532ebb3
## 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
...
...
This diff is collapsed.
Click to expand it.
docs/conf.py
+
2
−
2
View file @
a532ebb3
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
duniterpy/__init__.py
+
1
−
1
View file @
a532ebb3
...
@@ -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
This diff is collapsed.
Click to expand it.
duniterpy/documents/transaction.py
+
1
−
1
View file @
a532ebb3
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment