0g-chain/internal/lcd/wire.go

16 lines
272 B
Go
Raw Normal View History

2018-09-20 00:23:37 +00:00
// Copyright 2016 All in Bits, inc
// Modifications copyright 2018 Kava Labs
2018-06-21 23:37:55 +00:00
package lcd
import (
amino "github.com/tendermint/go-amino"
ctypes "github.com/tendermint/tendermint/rpc/core/types"
)
var cdc = amino.NewCodec()
func init() {
ctypes.RegisterAmino(cdc)
}