forgot wire.go file

This commit is contained in:
Ethan Buchman 2018-04-27 10:00:34 -04:00
parent 593a785ae2
commit f67c5a9e7b

12
consensus/types/wire.go Normal file
View File

@ -0,0 +1,12 @@
package types
import (
"github.com/tendermint/go-amino"
"github.com/tendermint/go-crypto"
)
var cdc = amino.NewCodec()
func init() {
crypto.RegisterAmino(cdc)
}