4340 | @@ -4329,9 +4341,5 @@ static const CRPCCommand commands[] =
4341 | { "wallet", "walletprocesspsbt", &walletprocesspsbt, {"psbt","sign","sighashtype","bip32derivs"} },
4342 | };
4343 | // clang-format on
4344 | -
4345 | - for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++)
4346 | - handlers.emplace_back(chain.handleRpc(commands[vcidx]));
4347 | + return MakeSpan(commands);
Would it be possible to do just this change in the first commit and all other changes in the second commit? If yes, that should simplify review. If no, I will take another look.
re: #19096 (review)
Would it be possible to do just this change in the first commit and all other changes in the second commit? If yes, that should simplify review. If no, I will take another look.
Moved to new commit
Thanks for splitting up. This made the review easier for me.