An alternative full node implementation of LBRY's blockchain written in Go (golang)
f07d427837
This commit reworks the getheaders handling a bit to clean it up and match the reference implementation handling. In particular, in addition to the normal handling where headers starting after the block locator up to the stop hash are served, when no locator hashes are provided, the stop hash acts as a way to specifically request that header. Next, an empty headers message is sent when no hashes provided by the block locator can be found. Finally, there was a bug that was limiting the number of headers that could requested at once to 500 instead of the expected 2000. |
||
---|---|---|
.gitignore | ||
addrmanager.go | ||
addrmanager_test.go | ||
blockmanager.go | ||
btcd.go | ||
config.go | ||
discovery.go | ||
LICENSE | ||
logclosure.go | ||
params.go | ||
peer.go | ||
README.md | ||
rpcserver.go | ||
sample-btcd.conf | ||
server.go | ||
signal.go | ||
version.go |
btcd
btcd is an alternative full node bitcoin implementation written in Go (golang).
This project is currently under active development and is not production ready yet.
TODO
The following is a list of major items remaining before production release:
- Implement multi-peer support
- Implement relay
- Complete address manager
- Rework the block syncing code to work with headers
- Documentation
- A lot of code cleanup
- Optimize