From 85d31c240f61425b51322c4c4f7137673847f7c9 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 8 Jun 2012 05:31:51 -0700 Subject: [PATCH] Dead code. --- src/Avalanche.h | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 src/Avalanche.h 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