An alternative full node implementation of LBRY's blockchain written in Go (golang)
6bb0b80bbb
We originally wanted to also not fetch orphan parents in this commit, however, I have discovered that if you are doing a main sync from a peer, if it sends you an orphan you must fetch it, else you ahven't fetched everything it told you about and thus it will nto send you end more invs from the main sync. So we always fetch orphan parents, but we still don't fetch from non-sync peers (all invs from them will be unsolicited). Seems to fix some hangs with multiple peers. |
||
---|---|---|
.gitignore | ||
addrmanager.go | ||
addrmanager_test.go | ||
blockmanager.go | ||
btcd.go | ||
config.go | ||
discovery.go | ||
LICENSE | ||
logclosure.go | ||
mruinvmap.go | ||
params.go | ||
peer.go | ||
README.md | ||
rpcserver.go | ||
sample-btcd.conf | ||
server.go | ||
signal.go | ||
upgrade.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 transaction mempool & relay
- Complete address manager
- Documentation
- A lot of code cleanup
- Optimize