From 613f61ec59a10e0efa537ba30205c86168a7d2aa Mon Sep 17 00:00:00 2001 From: "Owain G. Ainsworth" Date: Fri, 28 Mar 2014 00:02:57 +0000 Subject: [PATCH] simplify comment and fit into 80 cols. --- rpcserver.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rpcserver.go b/rpcserver.go index 04f48266..d32b1ee3 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -1403,10 +1403,8 @@ func handleSendRawTransaction(s *rpcServer, cmd btcjson.Cmd) (interface{}, error return nil, err } - // We keep track of all the sendrawtransaction request txs because we need to - // rebroadcast them if they fail to get broadcast or entered into a block; for - // instance if the client was offline when they were generated. Refer to - // server.go in /btcd. + // We keep track of all the sendrawtransaction request txs so that we + // can rebroadcast them if they don't make their way into a block. iv := btcwire.NewInvVect(btcwire.InvTypeTx, tx.Sha()) s.server.AddRebroadcastInventory(iv)