diff options
author | dougEfish <dchimento@gmail.com> | 2023-01-25 21:11:21 +0200 |
---|---|---|
committer | Douglas Chimento <dchimento@gmail.com> | 2023-03-06 21:52:43 +0200 |
commit | 3e947d7117c97a3cc34cfa7e1f5515fa0192fbe7 (patch) | |
tree | 4f50eda754fdc388386030ea25fcdf0860f0ecda /src | |
parent | a12b27a2a6dafe12fbf59815b88f2404617625d6 (diff) |
doc: remove 'omitted...' doc for rpc getrawtransaction when verbose is 2
Diffstat (limited to 'src')
-rw-r--r-- | src/rpc/rawtransaction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 5ed8aee9ea..21d49fda9d 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -216,10 +216,10 @@ static RPCHelpMan getrawtransaction() {RPCResult::Type::NUM, "fee", /*optional=*/true, "transaction fee in " + CURRENCY_UNIT + ", omitted if block undo data is not available"}, {RPCResult::Type::ARR, "vin", "", { - {RPCResult::Type::OBJ, "", "utxo being spent, omitted if block undo data is not available", + {RPCResult::Type::OBJ, "", "utxo being spent", { {RPCResult::Type::ELISION, "", "Same output as verbosity = 1"}, - {RPCResult::Type::OBJ, "prevout", /*optional=*/true, "Only if undo information is available)", + {RPCResult::Type::OBJ, "prevout", /*optional=*/true, "The previous output, omitted if block undo data is not available", { {RPCResult::Type::BOOL, "generated", "Coinbase or not"}, {RPCResult::Type::NUM, "height", "The height of the prevout"}, |