diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-06-06 18:50:32 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-06-06 18:51:00 +0200 |
commit | 95d68c48d7ae45cb2a7303152816e9391cfbd0c9 (patch) | |
tree | 0a25f1f328ca66177c79afcf4422ea99d221f981 /doc | |
parent | 345cb52e8ba878ca3e2590d5792b733ec11a1f0d (diff) | |
parent | 171ca7745e77c9f78f26556457fe64e5b2004a75 (diff) |
Merge pull request #3959
171ca77 estimatefee / estimatepriority RPC methods (Gavin Andresen)
0193fb8 Allow multiple regression tests to run at once (Gavin Andresen)
c6cb21d Type-safe CFeeRate class (Gavin Andresen)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md index f16eec32a2..9272d427cd 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,2 +1,21 @@ (note: this is a temporary file, to be added-to by anybody, and moved to release-notes at release time) + +New RPC methods +=============== + +Fee/Priority estimation +----------------------- + +estimatefee nblocks : Returns approximate fee-per-1,000-bytes needed for +a transaction to be confirmed within nblocks. Returns -1 if not enough +transactions have been observed to compute a good estimate. + +estimatepriority nblocks : Returns approximate priority needed for +a zero-fee transaction to confirm within nblocks. Returns -1 if not +enough free transactions have been observed to compute a good +estimate. + +Statistics used to estimate fees and priorities are saved in the +data directory in the 'fee_estimates.dat' file just before +program shutdown, and are read in at startup. |