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 67e0599da9
Merge pull request #182 from harmony-one/rj_branch
6 years ago
api/consensus move consensus/proto to api/consensus; change refernece package name to consensus_proto 6 years ago
beaconchain Merge pull request #178 from harmony-one/do_not_panic 6 years ago
client Clear out unused code and add more comments 6 years ago
consensus Merge conflict 6 years ago
core Remove UTXO model 6 years ago
crypto HAR-84: fix golint warnings in crytpo, p2p 6 years ago
db fix the build after rename the repo to harmony-one 6 years ago
harmony Implement faucet functionality and sharded transaction for wallet 6 years ago
internal/attack move attack under internal 6 years ago
log submit check - tested in a PR and it worked 6 years ago
newnode HAR-65: support node removal after node is offline 6 years ago
node Do not proceed if no tx in block 6 years ago
p2p fix can't bind address issue on AWS 6 years ago
profiler fix golint 6 years ago
proto Remove UTXO model 6 years ago
services Fix build error by removing legacy reference 6 years ago
test remove unused files 6 years ago
trie clean up code 6 years ago
utils Merge pull request #177 from harmony-one/rj_branch 6 years ago
.gitignore test smart contract calling; remove and ignore rlp journal 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 fix the build after rename the repo to harmony-one 6 years ago
appspec.yml update aws scripts. 6 years ago
benchmark.go move attack under internal 6 years ago
go_executable_build.sh fix a typo of the s3api command 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

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