mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 00:35:18 +00:00
11 lines
257 B
Go
11 lines
257 B
Go
|
package distribution
|
||
|
|
||
|
import (
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
)
|
||
|
|
||
|
// CommunityKeeper defines the contract needed to be fulfilled for community module dependencies.
|
||
|
type CommunityKeeper interface {
|
||
|
GetModuleAccountBalance(sdk.Context) sdk.Coins
|
||
|
}
|