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.
 
 
 
Minh Doan 896c2b20f4 add db package. most code is clone from ethereum-go 6 years ago
attack update for github.com folder structure 6 years ago
aws-experiment-launch update for github.com folder structure 6 years ago
aws-scripts instance creation wip new setup 6 years ago
azure azure 1 vm create 6 years ago
blockchain update for github.com folder structure 6 years ago
client update for github.com folder structure 6 years ago
configr update for github.com folder structure 6 years ago
consensus update for github.com folder structure 6 years ago
crypto Generate real response in validator node; correct the commitment threshold as now leader is also part of the bft 6 years ago
db add db package. most code is clone from ethereum-go 6 years ago
log use vendor 6 years ago
node update for github.com folder structure 6 years ago
p2p update for github.com folder structure 6 years ago
proto update for github.com folder structure 6 years ago
utils update for github.com folder structure 6 years ago
.gitignore add test for distribution ip 6 years ago
.travis.gofmt.sh update .travis.gofmt.sh 6 years ago
.travis.yml update for github.com folder structure 6 years ago
README.md Update README.md 6 years ago
appspec.yml update aws scripts. 6 years ago
benchmark.go update for github.com folder structure 6 years ago
deploy.sh move exe to /bin. 6 years ago
deploy_btctx.sh update btctxgen 6 years ago
deploy_linux.sh move exe to /bin. 6 years ago
global_nodes.txt two shards 5 nodes each 6 years ago
go_executable_build.sh update kill_node.sh into s3 6 years ago
kill_node.sh fix kill_node.sh script and improve logic of peer.go 6 years ago
lint_before_submit.sh add todo and add golint script 6 years ago
local_config.txt Add block sync function for leader to send new blocks to client 6 years ago
local_config2.txt Fix cross shard tx bug; add utxo pool sync for client to keep up with the leaders 6 years ago
local_config3.txt Add block sync function for leader to send new blocks to client 6 years ago
local_config_shards.txt Add node server for tx generator client 6 years ago
run_commander.sh enable execution mode 6 years ago
send_txn.sh add message dir; add msgCategory, msgType in messaging protocol; add node struct as the entry point for messages 6 years ago
sysctl.sh Fill in consensus message structure and send realistic consensus message instead of dummy string 6 years ago
test_before_submit.sh Add cross-shard transaction locking 6 years ago

README.md

Harmony Benchmark

Build Status

Golang Coding Convention

  • Follow effective_go
  • Constant enum should follow CamelCase.
  • Comments of each element in a struct is written right after the element.

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

git clone git@github.com:simple-rules/harmony-benchmark.git

cd harmony-benchmark

go get ./...

Usage

./deploy.sh local_config.txt

Testing

Make sure you the following command and make sure everything passed before submitting your code.

./test_before_submit.sh

Linting

Make sure you the following command and make sure everything passes golint.

./lint_before_submit.sh