Refactor Tx, Validator, and Account structure

This commit is contained in:
Jae Kwon
2014-12-09 18:49:04 -08:00
parent 4424a85fbd
commit 83d313cbe5
56 changed files with 1922 additions and 2027 deletions

View File

@ -19,6 +19,7 @@ func main() {
Commands:
daemon Run the tendermint node daemon
gen_account Generate new account keypair
gen_validator Generate new validator keypair
tendermint --help for command options`)
return
@ -29,5 +30,7 @@ tendermint --help for command options`)
daemon()
case "gen_account":
gen_account()
case "gen_validator":
gen_validator()
}
}