1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00
electrs/TODO.md
2018-07-03 21:02:12 +03:00

25 lines
930 B
Markdown

# Electrum
* Poll mempool after transaction broadcast
* Support TLS (via https://docs.rs/rustls/)
* Snapshot DB after successful indexing - and run queries on the latest snapshot
* Update height to -1 for txns with any [unconfirmed input](https://electrumx.readthedocs.io/en/latest/protocol-basics.html#status)
* Limit mempool TXs (e.g. by fee rate) when mempool is large
# Bitcoind
* Stream blocks (instead batching RPCs)
* Use nTx from [getblockheader RPC](https://github.com/bitcoin/bitcoin/pull/13451) for better batching
* Handle bitcoind connection failures - instead of crashing
* Add getrawtransactions() API (for RPC batching)
# Performance
* Use rayon for faster multi-block indexing on multi-core systems
* Experiment with [sled](https://github.com/spacejam/sled) DB
# Rust
* Use [bytes](https://carllerche.github.io/bytes/bytes/index.html) instead of `Vec<u8>` when possible
* Use generators instead of vectors