mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
7c58fb5303
* implement & register x/community lend proposals * register proposals in x/community codec * allow x/community macc to receive funds * init lend from genesis in proposal tests * test CommunityLendWithdrawProposal * helpful comment on x/community keeper deps * use RouteKey in module.go
25 lines
873 B
Go
25 lines
873 B
Go
package community
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
|
|
|
|
"github.com/kava-labs/kava/x/community/keeper"
|
|
"github.com/kava-labs/kava/x/community/types"
|
|
)
|
|
|
|
// NewCommunityPoolProposalHandler handles x/community proposals.
|
|
func NewCommunityPoolProposalHandler(k keeper.Keeper) govtypes.Handler {
|
|
return func(ctx sdk.Context, content govtypes.Content) error {
|
|
switch c := content.(type) {
|
|
case *types.CommunityPoolLendDepositProposal:
|
|
return keeper.HandleCommunityPoolLendDepositProposal(ctx, k, c)
|
|
case *types.CommunityPoolLendWithdrawProposal:
|
|
return keeper.HandleCommunityPoolLendWithdrawProposal(ctx, k, c)
|
|
default:
|
|
return sdkerrors.Wrapf(sdkerrors.ErrUnknownRequest, "unrecognized community proposal content type: %T", c)
|
|
}
|
|
}
|
|
}
|