From 1b953411f9d996a06c05b96e4f3707cf85391e73 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Thu, 29 Nov 2018 14:45:55 +0100 Subject: [PATCH] send() --> send_commit() because `send()` is now gone (doesn't work) in the Python driver. --- _src/developers/getstarted.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_src/developers/getstarted.html b/_src/developers/getstarted.html index 1516f81..e8a954b 100644 --- a/_src/developers/getstarted.html +++ b/_src/developers/getstarted.html @@ -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 }}