An alternative full node implementation of LBRY's blockchain written in Go (golang)
98109dbadd
We would occasionally hang or a while during server shudown, this is due to an outbound peer waiting on a connection or a sleep. However, we don't actually require to wait for the peers to finish at all. So just let them finish. Secondly, make peer.disconnnect and server.shutdown atomic varaibles so that checking them from multiple goroutines isn't race, and clean up their usage. |
||
---|---|---|
.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