You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Weiliang Li 63b9ab8857 Rustfmt 4 years ago
src Rustfmt 4 years ago
.gitignore Rustfmt 4 years ago
.rustfmt.toml Rustfmt 4 years ago
Cargo.toml Update Cargo.toml 4 years ago
LICENSE Add license. 5 years ago
README.md Rustfmt 4 years ago
gdb-node Updates. 5 years ago
ltrace-node Updates. 5 years ago
run-node Debug log batch output, tweak logging env var use. 5 years ago
valgrind-node Updates. 5 years ago

README.md

Hydrabadger

An experimental peer-to-peer client using the Honey Badger Byzantine Fault Tolerant consensus algorithm.

Usage

Running a test peer

  1. git clone https://github.com/poanetwork/hydrabadger
  2. cd hydrabadger
  3. ./run-node 0

Additional peers

  1. Open a new terminal window.
  2. cd {...}/hydrabadger
  3. ./run-node 1
  4. (Repeat 1 and 2), ./run-node 2, ./run-node 3, ./run-node 4
    • Note: If your terminal has tabs, open multiple tabs and use ctrl-pgup/pgdown to cycle between tabs quickly.

Each peer will generate a number of random transactions at regular intervals, process them accordingly, and output complete batches. If your terminal is spammed with batch outputs, consensus is working.

Type ./run-node 0 --help or cargo run -- --help for command line options.

See the run-node script for additional optional environment variables that can be set. To turn on debug log output: export HYDRABADGER_LOG_ADDTL=debug and/or echo "export HYDRABADGER_LOG_ADDTL=debug" >> ~/.profile.

Current State

Network initialization node addition, transaction generation, consensus, and batch outputs are all generally working. Batch outputs for each epoch are printed to the log.

Overall the client is fragile and doesn't handle deviation from simple usage very well yet.

Unimplemented

  • Many edge cases and exceptions: disconnects, reconnects, etc.
    • Connecting to a network which is in the process of key generation causes the entire network to fail. For now, wait until the network starts outputting batches before connecting additional peer nodes.
  • Error handling is atrocious, most errors are simply printed to the log.
  • Usage as a library is still a work in progress as the API settles.
  • Much, much more...

License

License: LGPL v3.0

This project is licensed under the GNU Lesser General Public License v3.0. See the LICENSE file for details.