You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
907 B

# Electrum
* Poll mempool after transaction broadcast
6 years ago
* Support TLS (via https://docs.rs/rustls/)
6 years ago
* 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
6 years ago
* Stream blocks (instead batching RPCs)
* Use nTx from [getblockheader RPC](https://github.com/bitcoin/bitcoin/pull/13451) for better batching
6 years ago
* Handle bitcoind connection failures - instead of crashing
* Add getrawtransactions() API (for RPC batching)
# Performance
6 years ago
* Use rayon for faster multi-block indexing on multi-core systems
* Experiment with [sled](https://github.com/spacejam/sled) DB
# Rust
6 years ago
* Use Bytes instead of Vec[u8] when possible
* Return errors instead of panics
* Use generators instead of vectors