mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
82f5ed5c3c
* Block new vesting create messages * doc: Update VestingAccountDecorator doc comment
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
package ante
|
|
|
|
import (
|
|
errorsmod "cosmossdk.io/errors"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
vesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
|
|
)
|
|
|
|
var _ sdk.AnteDecorator = VestingAccountDecorator{}
|
|
|
|
// VestingAccountDecorator blocks vesting messages from reaching the mempool
|
|
type VestingAccountDecorator struct {
|
|
disabledMsgTypeUrls []string
|
|
}
|
|
|
|
func NewVestingAccountDecorator() VestingAccountDecorator {
|
|
return VestingAccountDecorator{
|
|
disabledMsgTypeUrls: []string{
|
|
sdk.MsgTypeURL(&vesting.MsgCreateVestingAccount{}),
|
|
sdk.MsgTypeURL(&vesting.MsgCreatePermanentLockedAccount{}),
|
|
sdk.MsgTypeURL(&vesting.MsgCreatePeriodicVestingAccount{}),
|
|
},
|
|
}
|
|
}
|
|
|
|
func (vad VestingAccountDecorator) AnteHandle(
|
|
ctx sdk.Context,
|
|
tx sdk.Tx,
|
|
simulate bool,
|
|
next sdk.AnteHandler,
|
|
) (newCtx sdk.Context, err error) {
|
|
for _, msg := range tx.GetMsgs() {
|
|
typeUrl := sdk.MsgTypeURL(msg)
|
|
|
|
for _, disabledTypeUrl := range vad.disabledMsgTypeUrls {
|
|
if typeUrl == disabledTypeUrl {
|
|
return ctx, errorsmod.Wrapf(
|
|
sdkerrors.ErrUnauthorized,
|
|
"MsgTypeURL %s not supported",
|
|
typeUrl,
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
return next(ctx, tx, simulate)
|
|
}
|