The blockchain.cpp
file is quite large. This makes it harder to navigate and increases the memory required to compile.
Improve on both issues by splitting up the mempool RPCs to a separate file.
The blockchain.cpp
file is quite large. This makes it harder to navigate and increases the memory required to compile.
Improve on both issues by splitting up the mempool RPCs to a separate file.
Can be reviewed with:
--color-moved=dimmed-zebra --color-moved-ws=ignore-all-space
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
Reviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.
2376@@ -2825,6 +2377,14 @@ UniValue CreateUTXOSnapshot(
2377 return result;
2378 }
2379
2380+
2381+RPCHelpMan getmempoolancestors();
RegisterMempoolRPCCommands
instead.