* first commit * gaia cleanup * ... * staking multihooks * missing module function return args * bank module name constant * working, module interface for x/ * got this thing compiling * make test compiles and passes * remove expanded simulation invariants * genesis issue * continued * continued * register crisis routes thought mm * begin blocker to mm * end blocker to mm * empty routes not initialized * move gaia initChainer sanity check to baseapp * remove codecs from module manager * reorging genesis stuff * module manager passed by reference/bugfixes from working last commit int int * move invariant checks from gaia to crisis * typo * basic refactors cmd/gaia/init * working * MultiStakingHooks from types to x/staking/types int * default module manager order of operations from input modules * working * typo * add AppModuleBasic * moduleBasicManager / non-test code compiles * working attempting to get tests passing * make test passes * sim random genesis fix * export bug * ... * genutil module * genutil working * refactored - happy with non-testing code in cmd/ * ... * lint fixes * comment improvement * cli test fix * compile housing * working through compile errors * working gettin' compilin' * non-test code compiles * move testnet to its own module * reworking tests int * bez staging PR 1 comments * concise module function-of names * moved all tests from genesis_test.go to other genutil tests * genaccounts package, add genutil and genaccounts to app.go * docs for genutil genaccounts * genaccounts iterate fn * non-test code with genaccounts/ now compiles * working test compiling * debugging tests * resolved all make test compile errors * test debuggin * resolved all unit tests, introduced param module * cli-test compile fixes * staking initialization bug * code comment improvements, changelog entries * BasicGaiaApp -> ModuleBasics * highlevel explanation in types/module.go * @alexanderbez comment revisions * @fedekunze PR comments * @alexanderbez PR comments (x2) * @cwgoes comments (minor updates) * @fedekunze suggestions * panic on init with multiple validator updates from different modules * initchain panic makes validate genesis fail int * AppModuleGenesis seperation int * test * remove init panic logic in validate genesis replaced with TODO * set maxprocs to match system's GOMAXPROCS * Update circleci * Cap maxprocs in CI to 4 * @alexanderbez recent comments addressed * less blocks in twouble sims int * runsim error output flag * -e on import_export as well * error out int * Try to fix failures * runsim
82 lines
2.1 KiB
Go
82 lines
2.1 KiB
Go
package crisis
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/crisis/tags"
|
|
)
|
|
|
|
// RouterKey
|
|
const RouterKey = ModuleName
|
|
|
|
func NewHandler(k Keeper) sdk.Handler {
|
|
return func(ctx sdk.Context, msg sdk.Msg) sdk.Result {
|
|
switch msg := msg.(type) {
|
|
case MsgVerifyInvariant:
|
|
return handleMsgVerifyInvariant(ctx, msg, k)
|
|
|
|
default:
|
|
errMsg := fmt.Sprintf("unrecognized crisis message type: %T", msg)
|
|
return sdk.ErrUnknownRequest(errMsg).Result()
|
|
}
|
|
}
|
|
}
|
|
|
|
func handleMsgVerifyInvariant(ctx sdk.Context, msg MsgVerifyInvariant, k Keeper) sdk.Result {
|
|
|
|
// remove the constant fee
|
|
constantFee := sdk.NewCoins(k.GetConstantFee(ctx))
|
|
_, err := k.bankKeeper.SubtractCoins(ctx, msg.Sender, constantFee)
|
|
if err != nil {
|
|
return err.Result()
|
|
}
|
|
_ = k.feeCollectionKeeper.AddCollectedFees(ctx, constantFee)
|
|
|
|
// use a cached context to avoid gas costs during invariants
|
|
cacheCtx, _ := ctx.CacheContext()
|
|
|
|
found := false
|
|
var invarianceErr error
|
|
msgFullRoute := msg.FullInvariantRoute()
|
|
for _, invarRoute := range k.routes {
|
|
if invarRoute.FullRoute() == msgFullRoute {
|
|
invarianceErr = invarRoute.Invar(cacheCtx)
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
return ErrUnknownInvariant(DefaultCodespace).Result()
|
|
}
|
|
|
|
if invarianceErr != nil {
|
|
|
|
// NOTE currently, because the chain halts here, this transaction will never be included
|
|
// in the blockchain thus the constant fee will have never been deducted. Thus no
|
|
// refund is required.
|
|
|
|
// TODO uncomment the following code block with implementation of the circuit breaker
|
|
//// refund constant fee
|
|
//err := k.distrKeeper.DistributeFeePool(ctx, constantFee, msg.Sender)
|
|
//if err != nil {
|
|
//// if there are insufficient coins to refund, log the error,
|
|
//// but still halt the chain.
|
|
//logger := ctx.Logger().With("module", "x/crisis")
|
|
//logger.Error(fmt.Sprintf(
|
|
//"WARNING: insufficient funds to allocate to sender from fee pool, err: %s", err))
|
|
//}
|
|
|
|
// TODO replace with circuit breaker
|
|
panic(invarianceErr)
|
|
}
|
|
|
|
resTags := sdk.NewTags(
|
|
tags.Sender, msg.Sender.String(),
|
|
tags.Invariant, msg.InvariantRoute,
|
|
)
|
|
return sdk.Result{
|
|
Tags: resTags,
|
|
}
|
|
}
|