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 ff6903b491 Merge branch 'master' of github.com:harmony-one/harmony into rj_branch 6 years ago
api fix for golint 6 years ago
cmd Add basic tests for wallet 6 years ago
consensus Add tests for consensus validator 6 years ago
core move trie and utils into internal 6 years ago
crypto Merge pull request #209 from harmony-one/crypto-unit-test 6 years ago
internal add test for utils 6 years ago
log submit check - tested in a PR and it worked 6 years ago
node Add tests for node_handler.go; move stream interface to its own file;create mock for stream.go 6 years ago
p2p Add tests for node_handler.go; move stream interface to its own file;create mock for stream.go 6 years ago
test move client/txgen to cmd/client/txgen 6 years ago
.gitignore Ignore subfolder's .rlp files 6 years ago
.travis.gofmt.sh submit check - tested in a PR and it worked 6 years ago
.travis.yml add submit check 6 years ago
README.md add coverage 6 years ago
appspec.yml update aws scripts. 6 years ago
benchmark.go move newnode into internal 6 years ago
coverage_badge.png add coverage badge 6 years ago
go_executable_build.sh move client/wallet to cmd/client/wallet 6 years ago
test_before_submit.sh add a build step in test_before_submit.sh 6 years ago

README.md

Harmony Benchmark

Build Status gopherbadger-tag-do-not-edit

Coding Guidelines

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:harmony-one/harmony.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