Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dadamu committed Nov 2, 2023
1 parent 242c77b commit f585728
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/desmos/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ func NewRootCmd() *cobra.Command {

// This needs to go after ReadFromClientConfig, as that function
// sets the RPC client needed for SIGN_MODE_TEXTUAL.
enabledSignModes := append(tx.DefaultSignModes, signing.SignMode_SIGN_MODE_TEXTUAL)
enabledSignModes := tx.DefaultSignModes
enabledSignModes = append(enabledSignModes, signing.SignMode_SIGN_MODE_TEXTUAL)
txConfigOpts := tx.ConfigOptions{
EnabledSignModes: enabledSignModes,
TextualCoinMetadataQueryFn: txmodule.NewGRPCCoinMetadataQueryFn(initClientCtx),
Expand Down

0 comments on commit f585728

Please sign in to comment.