| 93 | } |
| 94 | |
| 95 | bool seenTopLevel(blocksci::AddressType::Enum type) const { |
| 96 | return typesSeen & (1u << (static_cast<uint32_t>(type) * 2 + 1)); |
| 97 | } |
| 98 | |
| 99 | bool seen(blocksci::AddressType::Enum type) const { |
| 100 | return typesSeen & (1u << static_cast<uint32_t>(type) * 2); |
nothing calls this directly
no outgoing calls
no test coverage detected