Branch: refs/heads/master
Home: https://github.com/conformal/btcd
Commit: 8bce0ef3f81b095fad6152beb85927c992261ad1
https://github.com/conformal/btcd/commit/8bce0ef3f81b095fad6152beb85927c992261ad1
Author: David Hill <[email protected]>
Date: 2014-06-05 (Thu, 05 Jun 2014)
Changed paths:
M addrmanager.go
Log Message:
-----------
Convert binary Write()'s to PutUint64()'s.
PutUint64 is faster than a generic binary write, and also removes
the 'bytes' package from the import list.
Commit: bf48a97b0df05ed74e8d2c4d5734476b1d16bc09
https://github.com/conformal/btcd/commit/bf48a97b0df05ed74e8d2c4d5734476b1d16bc09
Author: David Hill <[email protected]>
Date: 2014-06-05 (Thu, 05 Jun 2014)
Changed paths:
M rpcserver.go
Log Message:
-----------
Use NewReader instead of NewBuffer.
NewReader is slightly faster, but more importantly, ensures that the
data is read-only.
Compare: https://github.com/conformal/btcd/compare/7f825fd9bc90...bf48a97b0df0