Fix docs building warnings

This commit is contained in:
Sylvain Bellemare 2016-12-07 19:59:22 +01:00 committed by Sylvain Bellemare
parent 20f629256b
commit 3bdaf60acb
3 changed files with 5 additions and 5 deletions

View File

@ -147,7 +147,7 @@ definitions:
"$ref": "#/definitions/offset" "$ref": "#/definitions/offset"
description: | description: |
Index of this condition's appearance in the `Transaction.conditions`_ Index of this condition's appearance in the `Transaction.conditions`_
array. In a transaction with 2 conditions, the ``cid``s will be 0 and 1. array. In a transaction with 2 conditions, the ``cid`` s will be 0 and 1.
condition: condition:
description: | description: |
Body of the condition. Has the properties: Body of the condition. Has the properties:

View File

@ -411,13 +411,13 @@ class Bigchain(object):
return None return None
def get_owned_ids(self, owner): def get_owned_ids(self, owner):
"""Retrieve a list of `txid`s that can be used as inputs. """Retrieve a list of ``txid`` s that can be used as inputs.
Args: Args:
owner (str): base58 encoded public key. owner (str): base58 encoded public key.
Returns: Returns:
:obj:`list` of TransactionLink: list of `txid`s and `cid`s :obj:`list` of TransactionLink: list of ``txid`` s and ``cid`` s
pointing to another transaction's condition pointing to another transaction's condition
""" """

View File

@ -190,8 +190,8 @@ GET /unspents/
Content-Type: application/json Content-Type: application/json
[ [
'../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/0', "../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/0",
'../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/1' "../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/1"
] ]
:statuscode 200: A list of outputs were found and returned in the body of the response. :statuscode 200: A list of outputs were found and returned in the body of the response.