From 9067582bdd2290533a1b24c06569b851764c499c Mon Sep 17 00:00:00 2001 From: diminator Date: Thu, 31 Mar 2016 18:05:52 +0200 Subject: [PATCH] updated docs --- bigchaindb/client.py | 4 ++-- bigchaindb/core.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bigchaindb/client.py b/bigchaindb/client.py index f7b37ad4..67ce51a9 100644 --- a/bigchaindb/client.py +++ b/bigchaindb/client.py @@ -27,8 +27,8 @@ class Client: 3. Reading them from the `config.json` file. Args: - public_key (str): the base58 encoded public key for the ECDSA secp256k1 curve. - private_key (str): the base58 encoded private key for the ECDSA secp256k1 curve. + public_key (str): the base58 encoded public key for the ED25519 curve. + private_key (str): the base58 encoded private key for the ED25519 curve. api_endpoint (str): a URL where rethinkdb is running. format: scheme://hostname:port consensus_plugin (str): the registered name of your installed diff --git a/bigchaindb/core.py b/bigchaindb/core.py index 36e23bf4..76252a89 100644 --- a/bigchaindb/core.py +++ b/bigchaindb/core.py @@ -41,8 +41,8 @@ class Bigchain(object): host (str): hostname where the rethinkdb is running. port (int): port in which rethinkb is running (usually 28015). dbname (str): the name of the database to connect to (usually bigchain). - public_key (str): the base58 encoded public key for the ECDSA secp256k1 curve. - private_key (str): the base58 encoded private key for the ECDSA secp256k1 curve. + public_key (str): the base58 encoded public key for the ED25519 curve. + private_key (str): the base58 encoded private key for the ED25519 curve. keyring (list[str]): list of base58 encoded public keys of the federation nodes. """