mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

* Remove testing for rethinkdb, mongodb, and Py3.5 * Add first tests * Add validation * Add command to start the ABCI Server * Reuse existing MongoDB Connection class * Use DuplicateTransaction * Test only tendermint * Update travis scripts * Fix pep8 errors * Update Makefile
6 lines
230 B
Python
6 lines
230 B
Python
# Order is important!
|
|
# If we import core first, core will try to load BigchainDB from
|
|
# __init__ itself, causing a loop.
|
|
from bigchaindb.tendermint.lib import BigchainDB # noqa
|
|
from bigchaindb.tendermint.core import App # noqa
|