Merge 5a4bc5c036 into merged_master (Bitcoin PR bitcoin/bitcoin#31305)

This commit is contained in:
ivanlele 2026-04-06 11:18:34 +00:00
commit 5f94567e95
No known key found for this signature in database
7 changed files with 11 additions and 0 deletions

View file

@ -159,6 +159,7 @@ static RPCHelpMan createmultisig()
// Get the public keys
const UniValue& keys = request.params[1].get_array();
std::vector<CPubKey> pubkeys;
pubkeys.reserve(keys.size());
for (unsigned int i = 0; i < keys.size(); ++i) {
pubkeys.push_back(HexToPubKey(keys[i].get_str()));
}