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
Merge requests
!122
#143
block inner hash and sign
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
#143
block inner hash and sign
143_block_inner_hash_and_sign
into
dev
Overview
1
Commits
4
Pipelines
6
Changes
4
Merged
#143 block inner hash and sign
matograine
requested to merge
143_block_inner_hash_and_sign
into
dev
Feb 1, 2021
Overview
1
Commits
4
Pipelines
6
Changes
4
Block.inner_hash() and Block.sign() were not correctly implemented.
create tests for these, according to DUBPv12
fix these functions
close
#143 (closed)
Edited
Mar 4, 2021
by
Vincent Texier
0
0
Merge request reports
Compare
dev
version 2
fa47135d
Mar 3, 2021
version 1
d2657342
Feb 1, 2021
dev (base)
and
latest version
latest version
86e38051
4 commits,
Mar 3, 2021
version 2
fa47135d
3 commits,
Mar 3, 2021
version 1
d2657342
3 commits,
Feb 1, 2021
4 files
+
76
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Makefile
+
3
−
3
View file @ 86e38051
Edit in single-file editor
Open in Web IDE
Show full file
@@ -20,9 +20,9 @@ mypy:
# check code errors
pylint
:
poetry run pylint
--disable
=
C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613
--enable
=
C0121,C0202,C0321
--jobs
=
0 duniterpy/
poetry run pylint
--disable
=
C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613
--enable
=
C0121,C0202,C0321
--jobs
=
0 tests/
poetry run pylint
--disable
=
C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613,E0401
--enable
=
C0121,C0202,C0321
--jobs
=
0 examples/
poetry run pylint
--disable
=
C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613
,R0801
--enable
=
C0121,C0202,C0321
--jobs
=
0 duniterpy/
poetry run pylint
--disable
=
C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613
,R0801
--enable
=
C0121,C0202,C0321
--jobs
=
0 tests/
poetry run pylint
--disable
=
C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613,E0401
,R0801
--enable
=
C0121,C0202,C0321
--jobs
=
0 examples/
# check format
check-format
:
Loading