14 lines
226 B
Go
Raw Normal View History

2019-04-13 09:23:43 -04:00
package blockchain_old
2019-03-26 09:58:30 +01:00
import (
amino "github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/types"
)
var cdc = amino.NewCodec()
func init() {
RegisterBlockchainMessages(cdc)
types.RegisterBlockAmino(cdc)
}