// MakeDeadReplicasKey returns the dead replicas gossip key for the given store. func MakeDeadReplicasKey(storeID roachpb.StoreID) string { return MakeKey(KeyDeadReplicasPrefix, storeID.String()) }
// MakeStoreKey returns the gossip key for the given store. func MakeStoreKey(storeID roachpb.StoreID) string { return MakeKey(KeyStorePrefix, storeID.String()) }