-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added support for peercoin v3 transactions #147
base: master
Are you sure you want to change the base?
Conversation
hello, can this be merged? |
Please rebase against current master, and make sure the CI checks pass. |
@@ -1,5 +1,5 @@ | |||
import setuptools | |||
version = '1.16.0' | |||
version = '1.17.1' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please undo this change
@@ -10,7 +10,7 @@ | |||
'plyvel', 'pylru', 'aiohttp>=3.3,<4'], | |||
extras_require={ | |||
'rapidjson': ['python-rapidjson>=0.4.1,<2.0'], | |||
'rocksdb': ['python-rocksdb>=0.6.9'], | |||
'rocksdb': ['python-rocksdb-static'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why? this affects bitcoin users too, so needs proper justification
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's the only way I could get it to be installed. Does the python-rocksdb package still work for you?
twmht/python-rocksdb#102
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well it works for the CI on current master.
but I guess it might be compiling against older rocksdb
Nevertheless, please open a separate PR (or issue) for the rocksdb change. It does not belong in this PR.
New deserializer for Peercoin which can handle new v3 transactions. Test added. Tests passing.