Fix 0.22.7, bump to 0.22.8

This commit is contained in:
Jae Kwon
2018-07-26 18:08:09 -07:00
parent 18acd77e40
commit d542d2c394
8 changed files with 21 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ package consensus
import (
"github.com/tendermint/go-amino"
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
"github.com/tendermint/tendermint/types"
)
var cdc = amino.NewCodec()
@@ -10,5 +10,5 @@ var cdc = amino.NewCodec()
func init() {
RegisterConsensusMessages(cdc)
RegisterWALMessages(cdc)
cryptoAmino.RegisterAmino(cdc)
types.RegisterBlockAmino(cdc)
}