diff options
| author | Alex Morcos <[email protected]> | 2016-11-29 12:18:44 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2016-11-29 12:18:44 -0500 |
| commit | d824ad030e70bc72e0c63e1b0d00b08413024b55 (patch) | |
| tree | 4edc345a21147e3f4d69987db095857a2e3c1738 /src/rpc/mining.cpp | |
| parent | Merge #9202: bench: Add support for measuring CPU cycles (diff) | |
| download | discoin-d824ad030e70bc72e0c63e1b0d00b08413024b55.tar.xz discoin-d824ad030e70bc72e0c63e1b0d00b08413024b55.zip | |
Disable fee estimates for a confirm target of 1 block
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") ); |