bigchaindb/bigchaindb
codegeschrei 90f2fdfc23 Problem: several tests are skipped (#2452)
* Problem: several tests are skipped
Solution: activate or remove tests

* Problem: store_transaction is deprecated
Solution: replace it with store_bulk_transaction

* Problem: we don't test the transaction split
Solution: undelete `test_store_transaction`

* Problem: failing tests
Solution: merge master and change deprecated store_transaction
2018-08-22 10:48:43 +02:00
..
backend Problem: several tests are skipped (#2452) 2018-08-22 10:48:43 +02:00
commands Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
common Problem: tests in test_bigchain_api are not activated (#2456) 2018-08-22 09:56:44 +02:00
upsert_validator Problem: Cannot conclude validator election (#2445) 2018-08-20 16:57:32 +02:00
web Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
README.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
__init__.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
config_utils.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
consensus.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
core.py Problem: Cannot conclude validator election (#2445) 2018-08-20 16:57:32 +02:00
event_stream.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
events.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
exceptions.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
fastquery.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
lib.py Problem: several tests are skipped (#2452) 2018-08-22 10:48:43 +02:00
log.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
models.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
start.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
tendermint_utils.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
utils.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
version.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00

README.md

Overview

A high-level description of the files and subdirectories of BigchainDB.

Files

lib.py

The BigchainDB class is defined here. Most node-level operations and database interactions are found in this file. This is the place to start if you are interested in implementing a server API, since many of these class methods concern BigchainDB interacting with the outside world.

models.py

Block, Transaction, and Asset classes are defined here. The classes mirror the block and transaction structure from the documentation, but also include methods for validation and signing.

consensus.py

Base class for consensus methods (verification of votes, blocks, and transactions). The actual logic is mostly found in transaction and block models, defined in models.py.

processes.py

Entry point for the BigchainDB process, after initialization. All subprocesses are started here: processes to handle new blocks, votes, etc.

config_utils.py

Methods for managing the configuration, including loading configuration files, automatically generating the configuration, and keeping the configuration consistent across BigchainDB instances.

Folders

commands

Contains code for the CLI for BigchainDB.

db

Code for building the database connection, creating indexes, and other database setup tasks.