simplify comment and fit into 80 cols.

This commit is contained in:
Owain G. Ainsworth 2014-03-28 00:02:57 +00:00
parent 3a03a03a92
commit 613f61ec59

View file

@ -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)