refactored debora/barak. about to add cli for debora

This commit is contained in:
Jae Kwon
2015-04-15 14:49:21 -07:00
parent e5d34befde
commit 618cd18f8b
7 changed files with 103 additions and 20 deletions

View File

@ -4,6 +4,11 @@ import (
pcm "github.com/tendermint/tendermint/process"
)
type ResponseStatus struct {
Nonce uint64
Validators []Validator
}
type ResponseRunProcess struct {
}

View File

@ -0,0 +1,10 @@
package types
import (
acm "github.com/tendermint/tendermint/account"
)
type Validator struct {
VotingPower uint64
PubKey acm.PubKey
}