diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-01-05 12:06:26 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-01-05 12:06:42 +0100 |
| commit | ce43630d1e97368f454ad6a7b65a24263ab5be71 (patch) | |
| tree | 7612898ce52d094da87a2e32ad0c05a1cb5d6778 /src/rpc/mining.cpp | |
| parent | Merge #9281: Refactor: Remove using namespace <xxx> from bench/ & test/ sources (diff) | |
| parent | Fix transaction size comments. Size now refers to virtual size as defined in ... (diff) | |
| download | discoin-ce43630d1e97368f454ad6a7b65a24263ab5be71.tar.xz discoin-ce43630d1e97368f454ad6a7b65a24263ab5be71.zip | |
Merge #8747: [rpc] Fix transaction size comments and RPC help text.
d29505d Fix transaction size comments. Size now refers to virtual size as defined in BIP141. (jonnynewbs)
Diffstat (limited to 'src/rpc/mining.cpp')
| -rw-r--r-- | src/rpc/mining.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index fa79d2073..3796a18fe 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -779,7 +779,8 @@ UniValue estimatefee(const JSONRPCRequest& request) throw runtime_error( "estimatefee nblocks\n" "\nEstimates the approximate fee per kilobyte needed for a transaction to begin\n" - "confirmation within nblocks blocks.\n" + "confirmation within nblocks blocks. Uses virtual transaction size of transaction\n" + "as defined in BIP 141 (witness data is discounted).\n" "\nArguments:\n" "1. nblocks (numeric)\n" "\nResult:\n" @@ -841,7 +842,8 @@ UniValue estimatesmartfee(const JSONRPCRequest& request) "\nWARNING: This interface is unstable and may disappear or change!\n" "\nEstimates the approximate fee per kilobyte needed for a transaction to begin\n" "confirmation within nblocks blocks if possible and return the number of blocks\n" - "for which the estimate is valid.\n" + "for which the estimate is valid. Uses virtual transaction size as defined\n" + "in BIP 141 (witness data is discounted).\n" "\nArguments:\n" "1. nblocks (numeric)\n" "\nResult:\n" |