mirror of
https://github.com/btcsuite/btcd.git
synced 2024-11-20 02:09:04 +01:00
An alternative full node bitcoin implementation written in Go (golang)
121f7a47d4
This commit adds support for relaying blocks between peers. It keeps track of inventory that has either already been advertised to remote peers or advertised by remote peers using a size-limited most recently used cache. This helps avoid relaying inventory the peer already knows as much as possible while not allowing rogue peers to eat up arbitrary amounts of memory with bogus inventory. |
||
---|---|---|
.gitignore | ||
addrmanager_test.go | ||
addrmanager.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 | ||
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 block realy
- Implement transaction mempool & relay
- Complete address manager
- Documentation
- A lot of code cleanup
- Optimize