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 947c882f26 Merge branch 'master' of github.com:harmony-one/harmony into rj_branch 6 years ago
attack fix the build after rename the repo to harmony-one 6 years ago
beaconchain cleaning up so no pr 6 years ago
blockchain make sure syncing package can keep syncing in case the new hashes are updated 6 years ago
client Fully integrate with tx gen by account model 6 years ago
consensus Merge branch 'master' of github.com:harmony-one/harmony into rj_branch 6 years ago
core Add ShardId into genesis block generation 6 years ago
crypto fix import with goimport 6 years ago
db fix the build after rename the repo to harmony-one 6 years ago
discovery add more addresses in the simulated txs 6 years ago
harmony Add ShardId into genesis block generation 6 years ago
log fix logging and remove extra messages 6 years ago
node enable back the syncing service by assigning syncing port equal to node port - 1000. with that, all the syncing ports will be different 6 years ago
p2p print # of retry when sending packet via socket 6 years ago
profiler fix gofmt errors 6 years ago
proto [HAR-5] Leader populates public keys to all validators 6 years ago
syncing quick fix to make ./deploy.sh working. the reason is that we only open a fixed port to function syncing for the different nodes but ./deploy.sh is to run nodes in the same localhost address 6 years ago
trie Add account-based tx gen 6 years ago
utils [HAR-73] add a singleton package and tests in utils 6 years ago
.gitignore ignore cscope files 6 years ago
.travis.gofmt.sh update .travis.gofmt.sh 6 years ago
.travis.yml Update go get script in .travis.yml 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 enable back the syncing service by assigning syncing port equal to node port - 1000. with that, all the syncing ports will be different 6 years ago
deploy.sh add -m option to specify minimal peers 6 years ago
deploy_btctx.sh change shardId to shardID, and ShardId to ShardID 6 years ago
deploy_linux.sh move exe to /bin. 6 years ago
go_executable_build.sh add -race build option to detect race condition 6 years ago
kill_node.sh remove profile logic from soldier; benchmark starts profiler. 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_config4.txt fix config file 6 years ago
local_config_8shards.txt Make txgen multi-thread and network async 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 change shardId to shardID, and ShardId to ShardID 6 years ago
send_txn.sh fix comments and fix ALL_CAPS lint 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 a build step in test_before_submit.sh 6 years ago
transactions.rlp Make account-based block verified in consensus 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