2018-06-15 09:23:48 +00:00
|
|
|
# Electrum
|
|
|
|
|
2018-06-03 20:28:18 +00:00
|
|
|
* Poll mempool after transaction broadcast
|
2018-06-16 09:38:43 +00:00
|
|
|
* Support TLS (via https://docs.rs/rustls/)
|
2018-06-03 18:07:01 +00:00
|
|
|
* Snapshot DB after successful indexing - and run queries on the latest snapshot
|
2018-06-15 09:23:48 +00:00
|
|
|
* Update height to -1 for txns with any [unconfirmed input](https://electrumx.readthedocs.io/en/latest/protocol-basics.html#status)
|
2018-06-26 15:52:06 +00:00
|
|
|
* Limit mempool TXs (e.g. by fee rate) when mempool is large
|
2018-06-15 09:23:48 +00:00
|
|
|
|
|
|
|
# Rust
|
2018-05-23 10:33:34 +00:00
|
|
|
|
2018-07-03 18:02:12 +00:00
|
|
|
* Use [bytes](https://carllerche.github.io/bytes/bytes/index.html) instead of `Vec<u8>` when possible
|
2018-06-03 18:07:01 +00:00
|
|
|
* Use generators instead of vectors
|
2018-07-13 18:12:26 +00:00
|
|
|
* Use proper HTTP parser for JSONRPC replies over persistent connection
|