1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-10 03:51:20 +00:00

14 lines
239 B
Go
Raw Normal View History

package privval
import (
"github.com/tendermint/go-amino"
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
)
var cdc = amino.NewCodec()
func init() {
cryptoAmino.RegisterAmino(cdc)
RegisterRemoteSignerMsg(cdc)
}