| 259 | explicit CScriptVisitor(CScript *scriptin) { script = scriptin; } |
| 260 | |
| 261 | bool operator()(const CNoDestination &dest) const { |
| 262 | script->clear(); |
| 263 | return false; |
| 264 | } |
| 265 | |
| 266 | bool operator()(const CKeyID &keyID) const { |
| 267 | script->clear(); |
nothing calls this directly
no test coverage detected