mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
Merge 2d16fb7a2b into merged_master (Bitcoin PR #14984)
This commit is contained in:
commit
fb4ef2f8cf
1 changed files with 4 additions and 1 deletions
|
|
@ -496,7 +496,10 @@ UniValue MempoolToJSON(const CTxMemPool& pool, bool verbose)
|
|||
const uint256& hash = e.GetTx().GetHash();
|
||||
UniValue info(UniValue::VOBJ);
|
||||
entryToJSON(pool, info, e);
|
||||
o.pushKV(hash.ToString(), info);
|
||||
// Mempool has unique entries so there is no advantage in using
|
||||
// UniValue::pushKV, which checks if the key already exists in O(N).
|
||||
// UniValue::__pushKV is used instead which currently is O(1).
|
||||
o.__pushKV(hash.ToString(), info);
|
||||
}
|
||||
return o;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue