| 230 | |
| 231 | CScript P2PKHGetScript(const CPubKey& pubkey) { return GetScriptForDestination(pubkey.GetID()); } |
| 232 | CScript P2PKGetScript(const CPubKey& pubkey) { return GetScriptForRawPubKey(pubkey); } |
| 233 | CScript P2WPKHGetScript(const CPubKey& pubkey) { return GetScriptForDestination(WitnessV0KeyHash(pubkey.GetID())); } |
| 234 | |
| 235 | /** A parsed multi(...) descriptor. */ |
nothing calls this directly
no test coverage detected