| 242 | } |
| 243 | |
| 244 | CScript GetScriptForRawPubKey(const CPubKey &pubKey) { |
| 245 | return CScript() << std::vector<uint8_t>(pubKey.begin(), pubKey.end()) |
| 246 | << OP_CHECKSIG; |
| 247 | } |
| 248 | |
| 249 | CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey> &keys) { |
| 250 | CScript script; |