Skip to content

Commit

Permalink
Fix signmode
Browse files Browse the repository at this point in the history
Signed-off-by: Dongri Jin <[email protected]>
  • Loading branch information
dongrie committed Feb 7, 2024
1 parent 312c1e7 commit 5070bf8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/chains/tendermint/simapp/simd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import (
"github.com/cosmos/cosmos-sdk/codec"
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
"github.com/cosmos/cosmos-sdk/types/module"
"github.com/cosmos/cosmos-sdk/types/tx/signing"
authtx "github.com/cosmos/cosmos-sdk/x/auth/tx"
txmodule "github.com/cosmos/cosmos-sdk/x/auth/tx/config"

Expand Down Expand Up @@ -92,7 +91,7 @@ func NewRootCmd() *cobra.Command {

if !initClientCtx.Offline {
txConfigOpts := authtx.ConfigOptions{
EnabledSignModes: append(authtx.DefaultSignModes, signing.SignMode_SIGN_MODE_TEXTUAL),
// EnabledSignModes: append(authtx.DefaultSignModes, signing.SignMode_SIGN_MODE_TEXTUAL),
TextualCoinMetadataQueryFn: txmodule.NewGRPCCoinMetadataQueryFn(initClientCtx),
}
txConfigWithTextual, err := authtx.NewTxConfigWithOptions(
Expand Down

0 comments on commit 5070bf8

Please sign in to comment.