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.
 
 
 
Rongjian Lan c8627fa32a Refactor tx generator methods and add more comments 6 years ago
aws-code Move tx generator client out of aws-code into client folder 6 years ago
aws-scripts HOME variable is different on AWS Linux setup 7 years ago
blockchain Fix utxopool udpate bug for invalid cross shard tx (finally the consensus is stable with 30% cross shard tx); reset consensus before retry 7 years ago
client Add block sync function for leader to send new blocks to client 7 years ago
common Add client directory for client related codes; refactor message protocol files 7 years ago
consensus Fix utxopool udpate bug for invalid cross shard tx (finally the consensus is stable with 30% cross shard tx); reset consensus before retry 7 years ago
log removed go-stack temporarily 7 years ago
node Refactor tx generator methods and add more comments 6 years ago
p2p replace block hash by transaction hash 7 years ago
stack removed go-stack temporarily 7 years ago
utils replace block hash by transaction hash 7 years ago
.gitignore updated aws-code 7 years ago
.travis.gofmt.sh update .travis.gofmt.sh 7 years ago
.travis.yml update travis go build ./... 7 years ago
README.md add todo and add golint script 7 years ago
appspec.yml relative paths are getting messed up so situation script within scripts folder 7 years ago
benchmark_main.go Refactor tx generator methods and add more comments 6 years ago
deploy.sh Move tx generator client out of aws-code into client folder 6 years ago
deploy_linux.sh Move tx generator client out of aws-code into client folder 6 years ago
deploy_one_instance.sh Move tx generator client out of aws-code into client folder 6 years ago
global_nodes.txt two shards 5 nodes each 7 years ago
kill_node.sh Fix kill_node.sh after the recent change 7 years ago
lint_before_submit.sh add todo and add golint script 7 years ago
local_config.txt Add block sync function for leader to send new blocks to client 7 years ago
local_config2.txt Fix cross shard tx bug; add utxo pool sync for client to keep up with the leaders 7 years ago
local_config3.txt Add block sync function for leader to send new blocks to client 7 years ago
local_config_shards.txt Add node server for tx generator client 7 years ago
send_txn.sh add message dir; add msgCategory, msgType in messaging protocol; add node struct as the entry point for messages 7 years ago
sysctl.sh Fill in consensus message structure and send realistic consensus message instead of dummy string 7 years ago
test_before_submit.sh Add cross-shard transaction locking 7 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 github.com/go-stack/stack

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 '''