aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjtimon <[email protected]>2014-08-11 20:49:22 +0200
committerjtimon <[email protected]>2014-08-12 02:17:29 +0200
commita381ee5d1c1c01c66e681e245f60f2de2b79b264 (patch)
treebc68d62e2677d09adfcf73c7c21f44d099b85905 /src
parentMerge pull request #4592 (diff)
downloaddiscoin-a381ee5d1c1c01c66e681e245f60f2de2b79b264.tar.xz
discoin-a381ee5d1c1c01c66e681e245f60f2de2b79b264.zip
Remove unnecessary typedef and script.h include
Diffstat (limited to 'src')
-rw-r--r--src/keystore.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/keystore.h b/src/keystore.h
index 72411a138..6a3a0dc13 100644
--- a/src/keystore.h
+++ b/src/keystore.h
@@ -8,21 +8,12 @@
#include "key.h"
#include "sync.h"
-#include "script.h" // for CNoDestination
#include <boost/signals2/signal.hpp>
#include <boost/variant.hpp>
class CScript;
-/** A txout script template with a specific destination. It is either:
- * * CNoDestination: no destination set
- * * CKeyID: TX_PUBKEYHASH destination
- * * CScriptID: TX_SCRIPTHASH destination
- * A CTxDestination is the internal data type encoded in a CBitcoinAddress
- */
-typedef boost::variant<CNoDestination, CKeyID, CScriptID> CTxDestination;
-
/** A virtual base class for key stores */
class CKeyStore
{