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 9537a04fb5 change ReadySignal into a good practice 6 years ago
attack update for github.com folder structure 6 years ago
blockchain Remove invalid transactions in pending list 6 years ago
client add duration support in txgen 6 years ago
consensus change ReadySignal into a good practice 6 years ago
crypto Add wallet transfer functionality; Add transaction serialization; Refactor wallet utitlity and reuse wallet server; Bytes util; utxoPool crossShard check 6 years ago
db fix db test 6 years ago
identitychain peer to shard map 6 years ago
identitymanage saving work 6 years ago
log use vendor 6 years ago
node change ReadySignal into a good practice 6 years ago
p2p add logic for waiting for syncing finish 6 years ago
pow saving work 6 years ago
profiler update profiler to be singleton; add metricsReportURL argument. 6 years ago
proto merge from master and fix the conflict 6 years ago
runid saving work 6 years ago
runwait unbreaking travis 6 years ago
utils Add wallet transfer functionality; Add transaction serialization; Refactor wallet utitlity and reuse wallet server; Bytes util; utxoPool crossShard check 6 years ago
waitnode saving work 6 years ago
.gitignore Add import private key and check balance functionalities to wallet 6 years ago
.travis.gofmt.sh update .travis.gofmt.sh 6 years ago
.travis.yml try to fix travis-ci 6 years ago
README.md update readme 6 years ago
appspec.yml update aws scripts. 6 years ago
benchmark.go update profiler to be singleton; add metricsReportURL argument. 6 years ago
deploy.sh merged profiler back. 6 years ago
deploy_btctx.sh update btctxgen 6 years ago
deploy_linux.sh move exe to /bin. 6 years ago
go_executable_build.sh update profiler to be singleton; add metricsReportURL argument. 6 years ago
kill_node.sh add back kill_node.sh 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
run_experiment.sh remove reference of profiler binary as it was removed already 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

Running local test without db

./deploy.sh local_config.txt

Running local test with db

./deploy.sh local_config.txt 1

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