cosmos-sdk/store/v2/internal/util.go
Matt Kocubinski 7ae23e287a
chore: upstream runtime/v2 (#20320)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2024-05-14 12:43:28 +00:00

8 lines
121 B
Go

package internal
import "strings"
func IsMemoryStoreKey(key string) bool {
return strings.HasPrefix(key, "memory:")
}