mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
|
package keeper
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
|
||
|
"github.com/kava-labs/kava/x/community/types"
|
||
|
)
|
||
|
|
||
|
type msgServer struct {
|
||
|
keeper Keeper
|
||
|
}
|
||
|
|
||
|
// NewMsgServerImpl returns an implementation of the community MsgServer interface
|
||
|
// for the provided Keeper.
|
||
|
func NewMsgServerImpl(keeper Keeper) types.MsgServer {
|
||
|
return &msgServer{keeper: keeper}
|
||
|
}
|
||
|
|
||
|
var _ types.MsgServer = msgServer{}
|
||
|
|
||
|
// FundCommunityPool handles FundCommunityPool msgs.
|
||
|
func (s msgServer) FundCommunityPool(goCtx context.Context, msg *types.MsgFundCommunityPool) (*types.MsgFundCommunityPoolResponse, error) {
|
||
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
||
|
|
||
|
if err := msg.ValidateBasic(); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// above validation will fail if depositor is invalid
|
||
|
depositor := sdk.MustAccAddressFromBech32(msg.Depositor)
|
||
|
|
||
|
if err := s.keeper.FundCommunityPool(ctx, depositor, msg.Amount); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ctx.EventManager().EmitEvent(
|
||
|
sdk.NewEvent(
|
||
|
sdk.EventTypeMessage,
|
||
|
sdk.NewAttribute(sdk.AttributeKeyModule, types.AttributeValueCategory),
|
||
|
sdk.NewAttribute(sdk.AttributeKeyAction, types.AttributeValueFundCommunityPool),
|
||
|
sdk.NewAttribute(sdk.AttributeKeySender, msg.Depositor),
|
||
|
sdk.NewAttribute(sdk.AttributeKeyAmount, msg.Amount.String()),
|
||
|
),
|
||
|
)
|
||
|
|
||
|
return &types.MsgFundCommunityPoolResponse{}, nil
|
||
|
}
|