mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Merge branch 'develop' into feat/151/deploy-cluster-on-AWS
This commit is contained in:
commit
fa9b32b9bb
@ -40,8 +40,10 @@ At a high level, a "digital asset" is something which can be represented digital
|
|||||||
In BigchainDB, only the federation nodes are allowed to create digital assets, by doing a special kind of transaction: a `CREATE` transaction.
|
In BigchainDB, only the federation nodes are allowed to create digital assets, by doing a special kind of transaction: a `CREATE` transaction.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
|
from bigchaindb import crypto
|
||||||
|
|
||||||
# create a test user
|
# create a test user
|
||||||
testuser1_priv, testuser1_pub = b.generate_keys()
|
testuser1_priv, testuser1_pub = crypto.generate_key_pair()
|
||||||
|
|
||||||
# define a digital asset data payload
|
# define a digital asset data payload
|
||||||
digital_asset_payload = {'msg': 'Hello BigchainDB!'}
|
digital_asset_payload = {'msg': 'Hello BigchainDB!'}
|
||||||
|
2
setup.py
2
setup.py
@ -71,7 +71,7 @@ setup(
|
|||||||
'rethinkdb==2.2.0.post4',
|
'rethinkdb==2.2.0.post4',
|
||||||
'pysha3==0.3',
|
'pysha3==0.3',
|
||||||
'pytz==2015.7',
|
'pytz==2015.7',
|
||||||
'cryptography==1.2.1',
|
'cryptography==1.2.3',
|
||||||
'statsd==3.2.1',
|
'statsd==3.2.1',
|
||||||
'python-rapidjson==0.0.6',
|
'python-rapidjson==0.0.6',
|
||||||
'logstats==0.2.1',
|
'logstats==0.2.1',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user