aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGreg Sanders <gsanders87@gmail.com>2023-11-29 11:11:20 -0500
committerGreg Sanders <gsanders87@gmail.com>2023-11-29 12:56:26 -0500
commite67a345162912ef7c1bfa3c89c7e7c629505f0a3 (patch)
treefa1e03dc7acd1396b4ccc348815953a0ab0ac452 /src
parentb67db52c399089e5d4c4202ebb905794dfd050d0 (diff)
downloadbitcoin-e67a345162912ef7c1bfa3c89c7e7c629505f0a3.tar.xz
doc: submitpackage vsize results are sigops-adjusted
Diffstat (limited to 'src')
-rw-r--r--src/rpc/mempool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/mempool.cpp b/src/rpc/mempool.cpp
index 13b984d40c..abf6a4ebf1 100644
--- a/src/rpc/mempool.cpp
+++ b/src/rpc/mempool.cpp
@@ -842,7 +842,7 @@ static RPCHelpMan submitpackage()
{RPCResult::Type::OBJ, "wtxid", "transaction wtxid", {
{RPCResult::Type::STR_HEX, "txid", "The transaction hash in hex"},
{RPCResult::Type::STR_HEX, "other-wtxid", /*optional=*/true, "The wtxid of a different transaction with the same txid but different witness found in the mempool. This means the submitted transaction was ignored."},
- {RPCResult::Type::NUM, "vsize", /*optional=*/true, "Virtual transaction size as defined in BIP 141."},
+ {RPCResult::Type::NUM, "vsize", /*optional=*/true, "Sigops-adjusted virtual transaction size."},
{RPCResult::Type::OBJ, "fees", /*optional=*/true, "Transaction fees", {
{RPCResult::Type::STR_AMOUNT, "base", "transaction fee in " + CURRENCY_UNIT},
{RPCResult::Type::STR_AMOUNT, "effective-feerate", /*optional=*/true, "if the transaction was not already in the mempool, the effective feerate in " + CURRENCY_UNIT + " per KvB. For example, the package feerate and/or feerate with modified fees from prioritisetransaction."},