refactor: Remove unused code

This commit is contained in:
MarcoFalke 2021-04-04 12:40:09 +02:00
parent faa921f787
commit 0000007709
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548
3 changed files with 0 additions and 10 deletions

View File

@ -559,9 +559,3 @@ void SelectParams(const std::string& network)
SelectBaseParams(network);
globalChainParams = CreateChainParams(gArgs, network);
}
std::ostream& operator<<(std::ostream& o, const AssumeutxoData& aud)
{
o << strprintf("AssumeutxoData(%s, %s)", aud.hash_serialized.ToString(), aud.nChainTx);
return o;
}

View File

@ -41,8 +41,6 @@ struct AssumeutxoData {
const unsigned int nChainTx;
};
std::ostream& operator<<(std::ostream& o, const AssumeutxoData& aud);
using MapAssumeutxo = std::map<int, const AssumeutxoData>;
/**

View File

@ -20,8 +20,6 @@
#include <functional>
#include <unordered_map>
class ChainstateManager;
/**
* A UTXO entry.
*