Merge pull request #278 from bigchaindb/fix-python-code-on-get-started-page

send() --> send_commit()
This commit is contained in:
Matthias Kretschmann 2018-12-03 12:33:39 +01:00 committed by GitHub
commit cc04333d6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>