| 280 | CScriptVisitor(CScript *scriptin) { script = scriptin; } |
| 281 | |
| 282 | bool operator()(const CNoDestination &dest) const { |
| 283 | script->clear(); |
| 284 | return false; |
| 285 | } |
| 286 | |
| 287 | bool operator()(const CKeyID &keyID) const { |
| 288 | script->clear(); |
nothing calls this directly
no test coverage detected