-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Topology sorting functionality added with docs #143
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #143 +/- ##
========================================
- Coverage 82.7% 78.9% -3.8%
========================================
Files 11 12 +1
Lines 266 275 +9
========================================
- Hits 220 217 -3
- Misses 46 58 +12
Continue to review full report at Codecov.
|
Ok I see, I have to create a test for this. |
|
||
.. code-block:: js | ||
|
||
let bdb = new driver.Connection('https://test.ipdb.io/api/v1/', { | ||
let bdb = new driver.Connection('https://test.bigchaindb.com/api/v1/', { | ||
app_id: 'dgi829l9', | ||
app_key: 'u008ik1bf83b43ce3a95uu0727e66fb9' | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess those credentials were valid for IPDB, not for the BigchainDB Test Network anymore. Maybe they could be avoided with
{
app_id: "Get one from testnet.bigchaindb.com",
app_key: "Get one from testnet.bigchaindb.com"
}
Also, are you planning to add some tests for the |
@@ -35,12 +35,14 @@ A simple connection with BigchainDB can be established like this. | |||
|
|||
const conn = new driver.Connection(API_PATH) | |||
|
|||
It is also possible to connect to a BigchainDB node of the IPDB test net. | |||
To do so, you need to pass the **app_id and app_key**. | |||
Previously you could connect to IPDB testnet, but it has been shutdown. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need to explain about IPDB history. I would say that we are connection to BigchainDB node.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented in docs/source/usage.rst
No description provided.