diff options
author | kevkevin <oapallikunnel@gmail.com> | 2024-01-08 19:01:45 -0600 |
---|---|---|
committer | kevkevin <oapallikunnel@gmail.com> | 2024-01-08 19:01:45 -0600 |
commit | 252a86729a15e47ed168d8da7c4a8d6113673909 (patch) | |
tree | 4249842726c25808ace841fa4c2d0ddde96b5b15 /src/rpc/mining.cpp | |
parent | 2fca6c2dd03c3955d86efb0b8d2a7961e42115fd (diff) |
rpc: renaming txid -> transactionid
renamed to transactionid because it is named this way in getrawmempool
and getmempoolancestors
Diffstat (limited to 'src/rpc/mining.cpp')
-rw-r--r-- | src/rpc/mining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 2f1872c29b..0949ddb576 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -489,7 +489,7 @@ static RPCHelpMan getprioritisedtransactions() RPCResult{ RPCResult::Type::OBJ_DYN, "", "prioritisation keyed by txid", { - {RPCResult::Type::OBJ, "txid", "", { + {RPCResult::Type::OBJ, "<transactionid>", "", { {RPCResult::Type::NUM, "fee_delta", "transaction fee delta in satoshis"}, {RPCResult::Type::BOOL, "in_mempool", "whether this transaction is currently in mempool"}, }} |