From 3092d4bbe9fd45e4ab4feb1ae46181be18e9c1ff Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Mon, 8 Feb 2016 15:14:41 -0800 Subject: [PATCH] Fix typo, broadcast_tx_asyn(c) --- rpc/core/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/core/routes.go b/rpc/core/routes.go index 8122039b3..5379985d8 100644 --- a/rpc/core/routes.go +++ b/rpc/core/routes.go @@ -19,7 +19,7 @@ var Routes = map[string]*rpc.RPCFunc{ "validators": rpc.NewRPCFunc(ValidatorsResult, ""), "dump_consensus_state": rpc.NewRPCFunc(DumpConsensusStateResult, ""), "broadcast_tx_sync": rpc.NewRPCFunc(BroadcastTxSyncResult, "tx"), - "broadcast_tx_asyn": rpc.NewRPCFunc(BroadcastTxAsyncResult, "tx"), + "broadcast_tx_async": rpc.NewRPCFunc(BroadcastTxAsyncResult, "tx"), "unconfirmed_txs": rpc.NewRPCFunc(UnconfirmedTxsResult, ""), // subscribe/unsubscribe are reserved for websocket events. }