Revision e47c43fdd9500e5e42912fa0afcb64934adb625e authored by Sam Kleinman on 30 July 2021, 13:29:00 UTC, committed by GitHub on 30 July 2021, 13:29:00 UTC
2 parent s 4beeebc + 3aec71c
Raw File
encoding.go
package sr25519

import tmjson "github.com/tendermint/tendermint/libs/json"

const (
	PrivKeyName = "tendermint/PrivKeySr25519"
	PubKeyName  = "tendermint/PubKeySr25519"
)

func init() {
	tmjson.RegisterType(PubKey{}, PubKeyName)
	tmjson.RegisterType(PrivKey{}, PrivKeyName)
}
back to top