-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
76 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{ | ||
"description": "Use the last irreversible block for tapos ref params", | ||
"type": "minor" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,5 +65,3 @@ target/ | |
.ropeproject/ | ||
.pytest_cache/ | ||
.scannerwork/ | ||
|
||
.changes/next-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
699 Fabian Schuh <[email protected]> | ||
735 Fabian Schuh <[email protected]> | ||
154 Fabian Schuh <[email protected]> | ||
77 Fabian Schuh <[email protected]> | ||
24 pyup-bot <[email protected]> | ||
90 Fabian Schuh <[email protected]> | ||
48 pyup-bot <[email protected]> | ||
20 gileadmcgee <[email protected]> | ||
10 jhtitor <[email protected]> | ||
10 user name <[email protected]> | ||
9 jhtitor <[email protected]> | ||
8 Maurits <[email protected]> | ||
5 Vladimir Kamarzin <[email protected]> | ||
4 bitcrab <[email protected]> | ||
3 Boombastic <[email protected]> | ||
3 Holger Nahrstaedt <[email protected]> | ||
3 Vladimir Kamarzin <[email protected]> | ||
3 abitmore <[email protected]> | ||
2 Nicolas Wack <[email protected]> | ||
2 Scott Howard <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
python-graphenelib | ||
================== | ||
python-graphene | ||
=============== | ||
|
||
.. toctree:: | ||
:maxdepth: 6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# -*- coding: utf-8 -*- | ||
import unittest | ||
from .fixtures import Chain | ||
from datetime import datetime | ||
from graphenebase.transactions import getBlockParams | ||
|
||
|
||
class Testcases(unittest.TestCase): | ||
def test_checkparamformating(self): | ||
chain = Chain() | ||
params = getBlockParams(chain.rpc) | ||
self.assertEqual(params, (53066, 3847813018)) | ||
# # -*- coding: utf-8 -*- | ||
# import unittest | ||
# from .fixtures import Chain | ||
# from datetime import datetime | ||
# from graphenebase.transactions import getBlockParams | ||
# | ||
# | ||
# class Testcases(unittest.TestCase): | ||
# def test_checkparamformating(self): | ||
# chain = Chain() | ||
# params = getBlockParams(chain.rpc) | ||
# self.assertEqual(params, (53066, 3847813018)) |