diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-12-02 08:20:44 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-12-02 08:21:06 +0100 |
| commit | 3fbf07926240256d20ca33fa6b049713d4881992 (patch) | |
| tree | 9768379b57ee7f7d7820433b8f6d8a614ee22152 /src/rpc/mining.cpp | |
| parent | Merge #9229: Remove calls to getaddrinfo_a (diff) | |
| parent | Make GUI incapable of setting tx confirm target of 1 (diff) | |
| download | discoin-3fbf07926240256d20ca33fa6b049713d4881992.tar.xz discoin-3fbf07926240256d20ca33fa6b049713d4881992.zip | |
Merge #9239: Disable fee estimates for 1 block target
e878689 Make GUI incapable of setting tx confirm target of 1 (Alex Morcos)
d824ad0 Disable fee estimates for a confirm target of 1 block (Alex Morcos)
Diffstat (limited to 'src/rpc/mining.cpp')
| -rw-r--r-- | src/rpc/mining.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index f3cd1fbf0..c2e579157 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -785,6 +785,8 @@ UniValue estimatefee(const JSONRPCRequest& request) "\n" "A negative value is returned if not enough transactions and blocks\n" "have been observed to make an estimate.\n" + "-1 is always returned for nblocks == 1 as it is impossible to calculate\n" + "a fee that is high enough to get reliably included in the next block.\n" "\nExample:\n" + HelpExampleCli("estimatefee", "6") ); |