From 5fb7e65079062b4cc70607c07646bd96bfd2ee9e Mon Sep 17 00:00:00 2001 From: HaoyangLiu Date: Tue, 2 Oct 2018 10:02:37 +0800 Subject: [PATCH] Remove useless comment --- client/tx/root.go | 1 - 1 file changed, 1 deletion(-) 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") }