| 406 | explicit CScriptVisitor(CScript *scriptin) { script = scriptin; } |
| 407 | |
| 408 | bool operator()(const CNoDestination &dest) const { |
| 409 | script->clear(); |
| 410 | return false; |
| 411 | } |
| 412 | |
| 413 | bool operator()(const CKeyID &keyID) const { |
| 414 | script->clear(); |
nothing calls this directly
no test coverage detected