Branch: refs/heads/master
Home: https://github.com/conformal/btcd
Commit: ab002c90cc9990a8313b9ff8de736945e7e98ae1
https://github.com/conformal/btcd/commit/ab002c90cc9990a8313b9ff8de736945e7e98ae1
Author: mydesktop <[email protected]>
Date: 2014-03-27 (Thu, 27 Mar 2014)
Changed paths:
M blockmanager.go
M mempool.go
M rpcserver.go
M server.go
Log Message:
-----------
Implement a rebroadcast handler.
This commit implements a rebroadcast handler which deals with
rebroadcasting inventory at a random time interval between 0 and 30
minutes. It then uses the new rebroadcast logic to ensure transactions
which were submitted via the sendrawtransaction RPC are rebroadcast until
they make it into a block.
Closes #99.
Commit: 35936c1f0170c72bfc604f6904f76d45306931d9
https://github.com/conformal/btcd/commit/35936c1f0170c72bfc604f6904f76d45306931d9
Author: Dave Collins <[email protected]>
Date: 2014-03-27 (Thu, 27 Mar 2014)
Changed paths:
M server.go
Log Message:
-----------
Don't discuss internals in exported func comments.
This commit cleans up and moves a couple of comments in the recent pull
request which implements a rebroadcast handler (#114) in order to avoid
discussing internal state in the exported function comment.
How a function actually accomplishes the stated functionality is not
something that a caller is concerned with. The details about the internal
state are better handled with comments inside the function body.
Compare: https://github.com/conformal/btcd/compare/5fcdfb040adb...35936c1f0170