Documentation update

This commit is contained in:
Honza 2023-09-08 20:28:49 +02:00
parent 899b487ee4
commit 0d001495d5
2 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Change Log
## Unreleased
- `CompactBlockProcessor` now processes compact blocks from the lightwalletd server with spend-before-sync algorithm
- `CompactBlockProcessor` now processes compact blocks from the lightwalletd server with **Spend-before-Sync** algorithm
(i.e. non-linear order). This feature shortens the time after which a wallet's spendable balance can be used.
- The block synchronization mechanism is about one-third faster thanks to the optimized
`CompactBlockProcessor.SYNC_BATCH_SIZE`. Issue **#1206**.

View File

@ -56,5 +56,6 @@ Note that we aim for the main branch of this repository to be stable and releasa
## Unstable Features
### Spend-before-Sync compact blocks synchronization algorithm
- CompactBlockProcessor now processes compact blocks from the lightwalletd server in the **spend-before-sync** order. This
feature shortens the time after which a wallet's spendable balance can be used. Please note that this new block synchronization algorithm is still under development.
`CompactBlockProcessor` now processes compact blocks from the lightwalletd server in non-linear order with the
**Spend-before-Sync** algorithm. This feature speeds up discovering the wallet's spendable balance. Please note that
this new block synchronization algorithm is still under development.