cosmos-sdk/x/supply/exported/exported.go

12 lines
287 B
Go
Raw Normal View History

2019-06-28 13:11:27 -07:00
package exported
import "github.com/cosmos/cosmos-sdk/x/auth/exported"
// ModuleAccountI defines an account interface for modules that hold tokens in an escrow
type ModuleAccountI interface {
exported.Account
GetName() string
GetPermissions() []string
HasPermission(string) bool
2019-06-28 13:11:27 -07:00
}