| 216 | } |
| 217 | |
| 218 | CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys) |
| 219 | { |
| 220 | CScript script; |
| 221 | |
| 222 | script << nRequired; |
| 223 | for (const CPubKey& key : keys) |
| 224 | script << ToByteVector(key); |
| 225 | script << keys.size() << OP_CHECKMULTISIG; |
| 226 | |
| 227 | return script; |
| 228 | } |