Revision d86706b0e8b36354ba9a916e7963dbf1cd5af4c8 authored by dependabot-preview[bot] on 19 December 2019, 06:22:43 UTC, committed by Anton Kaliaev on 19 December 2019, 06:22:43 UTC
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.25.1 to 1.26.0.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](https://github.com/grpc/grpc-go/compare/v1.25.1...v1.26.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
1 parent fff7f45
Raw File
codec.go
package store

import (
	amino "github.com/tendermint/go-amino"
	"github.com/tendermint/tendermint/types"
)

var cdc = amino.NewCodec()

func init() {
	types.RegisterBlockAmino(cdc)
}
back to top