blockchain_blackball: fix build with CLANG 5

It doesn't like the explicit NULL dereference (which is fine, honest)

(cherry picked from commit 3367ed863c)
release-v0.2.2.0
moneromooo-monero 6 years ago committed by Matthew Incognito
parent a47d1a3d75
commit 52572e9b21
No known key found for this signature in database
GPG Key ID: A09E643F541C0FC5

@ -253,7 +253,8 @@ int main(int argc, char* argv[])
return 1;
}
std::vector<std::unique_ptr<Blockchain>> core_storage(inputs.size());
tx_memory_pool m_mempool(*(Blockchain*)NULL);
Blockchain *blockchain = NULL;
tx_memory_pool m_mempool(*blockchain);
for (size_t n = 0; n < inputs.size(); ++n)
{
core_storage[n].reset(new Blockchain(m_mempool));

Loading…
Cancel
Save