diff --git a/src/Avalanche.h b/src/Avalanche.h deleted file mode 100644 index 301188edd4..0000000000 --- a/src/Avalanche.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef __AVALANCHE__ -#define __AVALANCHE__ - -#include -#include - -#include "Transaction.h" - -class DisputedTransaction -{ -protected: - Transaction::pointer mTransaction; -// std::vector mNodesIncluding; -// std::vector mNodesRejecting; - uint64 mTimeTaken; // when we took our position on this transaction - bool mOurPosition; -}; - -class DTComp -{ -public: - bool operator()(const DisputedTransaction&, const DisputedTransaction&); -}; - -class Avalanche -{ -protected: - SHAMap::pointer mOurLedger; - std::map mTxByID; - std::set mTxInASOrder; - -public: - Avalanche(SHAMap::pointer ourLedger); -}; - -#endif