* Add BuiltInCapabilities() to x/wasm/keeper and deprecate AllCapabilities() * Replace usage with new wasmkeeper.BuiltInCapabilities()
11 lines
240 B
Go
11 lines
240 B
Go
package app
|
|
|
|
import (
|
|
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
|
|
)
|
|
|
|
// Deprecated: Use BuiltInCapabilities from github.com/CosmWasm/wasmd/x/wasm/keeper
|
|
func AllCapabilities() []string {
|
|
return wasmkeeper.BuiltInCapabilities()
|
|
}
|