mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Problem: We use an old cryptoconditions version
Solution: upgrade to the latest version of the library
This commit is contained in:
parent
8e97c753eb
commit
c9daaf5ec0
@ -94,7 +94,7 @@ class Input(object):
|
|||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
fulfillment = self.fulfillment.serialize_uri()
|
fulfillment = self.fulfillment.serialize_uri()
|
||||||
except (TypeError, AttributeError, ASN1EncodeError):
|
except (TypeError, AttributeError, ASN1EncodeError, ASN1DecodeError):
|
||||||
fulfillment = _fulfillment_to_details(self.fulfillment)
|
fulfillment = _fulfillment_to_details(self.fulfillment)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -79,7 +79,7 @@ install_requires = [
|
|||||||
# TODO Consider not installing the db drivers, or putting them in extras.
|
# TODO Consider not installing the db drivers, or putting them in extras.
|
||||||
'pymongo~=3.6',
|
'pymongo~=3.6',
|
||||||
'pysha3~=1.0.2',
|
'pysha3~=1.0.2',
|
||||||
'cryptoconditions~=0.6.0.dev',
|
'cryptoconditions~=0.7.0',
|
||||||
'python-rapidjson~=0.6.0',
|
'python-rapidjson~=0.6.0',
|
||||||
'logstats~=0.2.1',
|
'logstats~=0.2.1',
|
||||||
'flask>=0.10.1',
|
'flask>=0.10.1',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user