From f67c5a9e7b914ed7bd13a0a8f10822ce57ec4bbb Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Fri, 27 Apr 2018 10:00:34 -0400 Subject: [PATCH] forgot wire.go file --- consensus/types/wire.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 consensus/types/wire.go diff --git a/consensus/types/wire.go b/consensus/types/wire.go new file mode 100644 index 000000000..bd5c4497d --- /dev/null +++ b/consensus/types/wire.go @@ -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) +}