mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
ad0d1f80c8
* initial version * override x/distribution community-pool query * test subset of original x/distribution queries Co-authored-by: rhuairahrighairigh <ruaridh.odonnell@gmail.com>
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
|
|
}
|