diff --git a/client/tx/root.go b/client/tx/root.go index ef3523a1cc..0f237b5967 100644 --- a/client/tx/root.go +++ b/client/tx/root.go @@ -20,6 +20,5 @@ func AddCommands(cmd *cobra.Command, cdc *codec.Codec) { func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router, cdc *codec.Codec) { r.HandleFunc("/txs/{hash}", QueryTxRequestHandlerFn(cdc, cliCtx)).Methods("GET") r.HandleFunc("/txs", SearchTxRequestHandlerFn(cliCtx, cdc)).Methods("GET") - // r.HandleFunc("/txs/sign", SignTxRequstHandler).Methods("POST") r.HandleFunc("/txs", BroadcastTxRequest(cliCtx, cdc)).Methods("POST") }