Add z_mergetoaddress to release notes

This commit is contained in:
Jack Grigg 2018-02-20 15:46:49 +00:00
parent 553a5c1ab2
commit 2bda6a9b22
No known key found for this signature in database
GPG Key ID: 665DBCD284F7DAFF
1 changed files with 17 additions and 0 deletions

View File

@ -4,6 +4,23 @@ release-notes at release time)
Notable changes
===============
UTXO and note merging
---------------------
In order to simplify the process of combining many small UTXOs and notes into a
few larger ones, a new RPC method `z_mergetoaddress` has been added. It merges
funds from t-addresses, z-addresses, or both, and sends them to a single
t-address or z-address.
Unlike most other RPC methods, `z_mergetoaddress` operates over a particular
quantity of UTXOs and notes, instead of a particular amount of ZEC. By default,
it will merge 50 UTXOs and 10 notes at a time; these limits can be adjusted with
the parameters `transparent_limit` and `shielded_limit`.
`z_mergetoaddress` also returns the number of UTXOs and notes remaining in the
given addresses, which can be used to automate the merging process (for example,
merging until the number of UTXOs falls below some value).
UTXO memory accounting
----------------------