mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-17 09:01:19 +00:00
13 lines
163 B
Go
13 lines
163 B
Go
|
package keys
|
||
|
|
||
|
import (
|
||
|
"github.com/tendermint/go-crypto"
|
||
|
"github.com/tendermint/go-wire"
|
||
|
)
|
||
|
|
||
|
var cdc = wire.NewCodec()
|
||
|
|
||
|
func init() {
|
||
|
crypto.RegisterWire(cdc)
|
||
|
}
|