The core protocol of WoopChain
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.
 
 
 
alajko 7e94d3cbb7
Merge pull request #2 from simple-rules/validator-return
6 years ago
aws-code fixing typo 7 years ago
aws-scripts WIP for amazon codedeploy 6 years ago
aws-setup app spec 6 years ago
blockchain bundle block blockchain transaction into blockchain packagge. add tests for utils 6 years ago
consensus fix import 6 years ago
p2p convert indentation and add vscode settings 6 years ago
utils bundle block blockchain transaction into blockchain packagge. add tests for utils 6 years ago
.gitignore Add .gitignore file 6 years ago
README.md Update README for the dev env setup 6 years ago
UTXOPool.go temporary commit 6 years ago
appspec.yml changing name of appspec file 6 years ago
benchmark_node.go fix import 6 years ago
deploy.sh remove mode argument as that is derived 6 years ago
ipList.txt working code to initialize consensus 6 years ago
kill_node.sh more files 6 years ago
node.go Two-round consensus finished; change logging to use log package everywhere; limit the visibility of Consensus struct fields 6 years ago
send_tnx.sh Fix send_tnx to only send START_CONCENSUS to leader; Add consensus signature threshold counting 6 years ago

README.md

Harmony Benchmark

Dev Environment Setup

export GOPATH=$HOME/<path_of_your_choice>

mkdir -p $HOME/<path_of_your_choice>/src

cd $HOME/<path_of_your_choice>/src

clone <harmony_repo>

Usage

./deploy.sh ipList.txt ./send_txn.sh

References

https://github.com/lightningnetwork/lnd

New Plan:

Done

TODO

  • implement block of transactions, instead of individual generators
  • instead of consume used leader.send function
  • understand when the program terminates and why we don't end up writing all the txns
  • simplify code, if it might be a overkill
  • Read go concurrency to setup transaction channel and pour those txns (randomString) into a queue from where the leader node can read it in chunks.

Readings