mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
3375484f79
* Use cosmossdk.io/errors for deprecated error methods * Update error registration with cosmossdk.io/errors * Use cosmossdk.io/math for deprecated sdk.Int alias * Fix modified proto file * Update sdk.Int usage in swap hooks * Update e2e test deprecated method usage
26 lines
920 B
Go
26 lines
920 B
Go
package community
|
|
|
|
import (
|
|
errorsmod "cosmossdk.io/errors"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
|
|
|
|
"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) govv1beta1.Handler {
|
|
return func(ctx sdk.Context, content govv1beta1.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 errorsmod.Wrapf(sdkerrors.ErrUnknownRequest, "unrecognized community proposal content type: %T", c)
|
|
}
|
|
}
|
|
}
|