gpu-compute-chain/x/cosmostest/types/keys.go

23 lines
458 B
Go
Raw Normal View History

2022-08-25 16:51:14 -07:00
package types
const (
// ModuleName defines the module name
ModuleName = "cosmostest"
// StoreKey defines the primary module store key
StoreKey = ModuleName
// RouterKey is the message route for slashing
RouterKey = ModuleName
// QuerierRoute defines the module's query routing key
QuerierRoute = ModuleName
// MemStoreKey defines the in-memory store key
MemStoreKey = "mem_cosmostest"
)
func KeyPrefix(p string) []byte {
return []byte(p)
}