You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
265 B

  1. package sr25519
  2. import (
  3. "github.com/tendermint/tendermint/internal/jsontypes"
  4. )
  5. const (
  6. PrivKeyName = "tendermint/PrivKeySr25519"
  7. PubKeyName = "tendermint/PubKeySr25519"
  8. )
  9. func init() {
  10. jsontypes.MustRegister(PubKey{})
  11. jsontypes.MustRegister(PrivKey{})
  12. }