| 60 | } |
| 61 | |
| 62 | uint32_t AddressState::getNewAddressIndex(blocksci::DedupAddressType::Enum type) { |
| 63 | auto &count = scriptIndexes[static_cast<uint8_t>(type)]; |
| 64 | auto scriptNum = count; |
| 65 | count++; |
| 66 | return scriptNum; |
| 67 | } |
| 68 | |
| 69 | void AddressState::reset(const blocksci::State &state) { |
| 70 | reloadBloomFilters(); |
nothing calls this directly
no outgoing calls
no test coverage detected