1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-25 18:51:39 +00:00
Files
tendermint/consensus/types/wire.go

13 lines
184 B
Go
Raw Normal View History

package types
import (
amino "github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/types"
)
var cdc = amino.NewCodec()
func init() {
2018-07-26 18:08:09 -07:00
types.RegisterBlockAmino(cdc)
}