1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-07-15 04:21:45 +00:00
Files
tendermint/keys/wire.go

13 lines
179 B
Go
Raw Normal View History

package keys
import (
2018-03-12 12:18:30 +04:00
amino "github.com/tendermint/go-amino"
crypto "github.com/tendermint/go-crypto"
)
2018-03-12 12:18:30 +04:00
var cdc = amino.NewCodec()
func init() {
2018-03-12 12:18:30 +04:00
crypto.RegisterAmino(cdc)
}