forgot node/wire.go

This commit is contained in:
Ethan Buchman 2018-04-07 19:53:29 +03:00
parent c68d406195
commit 466c3ab1c7

12
node/wire.go Normal file
View File

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