1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 01:36:55 +01:00

send() --> send_commit()

because `send()` is now gone (doesn't work) in the Python driver.
This commit is contained in:
Troy McConaghy 2018-11-29 14:45:55 +01:00 committed by Matthias Kretschmann
parent b246e083d0
commit 1b953411f9
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -95,7 +95,7 @@ tx = bdb.transactions.prepare(
signed_tx = bdb.transactions.fulfill( signed_tx = bdb.transactions.fulfill(
tx, tx,
private_keys=alice.private_key) private_keys=alice.private_key)
bdb.transactions.send(signed_tx) bdb.transactions.send_commit(signed_tx)
``` ```
{% endcapture %}{{ python | markdownify }} {% endcapture %}{{ python | markdownify }}
</div> </div>