diff --git a/README.md b/README.md index 143d17f..d2d1cd2 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ | BigchainDB Server | BigchainDB JavaScript Driver | | ----------------- |------------------------------| | `0.10` | `0.1.x` | -| `1.0` | `0.3.x` | +| `>= 1.0.0` | `0.3.x` | ## Contents diff --git a/docs/source/usage.rst b/docs/source/usage.rst index 13eb526..4b958bb 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -212,7 +212,7 @@ Bob is the new owner: .. code-block:: js - console.log('Is Bob the owner?', tx['outputs'][0]['public_keys'][0] == bob.publicKey) + console.log('Is Bob the owner?', txTransferBobSigned['outputs'][0]['public_keys'][0] == bob.publicKey) // Output: true Alice is the former owner: @@ -347,11 +347,11 @@ Recap: Asset Creation & Transfer }) .then(res => { console.log('Response from BDB server:', res) - return conn.pollStatusAndFetchTransaction(txTransferBobSigned.id) + return conn.pollStatusAndFetchTransaction(res.id) }) .then(tx => { console.log('Is Bob the owner?', tx['outputs'][0]['public_keys'][0] == bob.publicKey) - console.log('Was Alice the previous owner?', txTransferBobSigned['inputs'][0]['owners_before'][0] == alice.publicKey ) + console.log('Was Alice the previous owner?', tx['inputs'][0]['owners_before'][0] == alice.publicKey ) }) // Search for asset based on the serial number of the bicycle .then(() => conn.searchAssets('Bicycle Inc.'))