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
1 changed files with 1 additions and 1 deletions

View File

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