feat(container): automatic debugging on errors (#11915)

* feat(container): automatic debugging on errors

* tests

* group deps

* fix test errors

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
This commit is contained in:
Aaron Craelius
2022-05-10 13:05:04 -04:00
committed by GitHub
co-authored by Aleksandr Bezobchuk
parent 6872cae778
commit 40b59537eb
5 changed files with 169 additions and 12 deletions
+2 -1
View File
@@ -4,9 +4,10 @@ import (
"context"
"fmt"
"github.com/tendermint/tendermint/crypto/tmhash"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/tx"
"github.com/tendermint/tendermint/crypto/tmhash"
)
type handlerFun func(ctx sdk.Context, tx sdk.Tx, simulate bool) (newCtx sdk.Context, err error)