Conform to go-wire new TypeByte behavior

This commit is contained in:
Jae Kwon
2015-12-21 14:48:44 -08:00
parent 5bf7796004
commit 08d7980d80
6 changed files with 22 additions and 22 deletions

View File

@@ -17,9 +17,9 @@ var GenDocKey = []byte("GenDocKey")
// core types for a genesis definition
type GenesisValidator struct {
PubKey crypto.PubKeyEd25519 `json:"pub_key"`
Amount int64 `json:"amount"`
Name string `json:"name"`
PubKey crypto.PubKey `json:"pub_key"`
Amount int64 `json:"amount"`
Name string `json:"name"`
}
type GenesisDoc struct {