From 8d5e5102f6f80c037b6bbc2985b778fd40c80d1c Mon Sep 17 00:00:00 2001 From: jtimon Date: Sat, 23 Aug 2014 03:52:54 +0200 Subject: Remove unused function StackString() and class CCoins; --- src/script.h | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/script.h') diff --git a/src/script.h b/src/script.h index 8e6aedcc63..c1f5aa1dd5 100644 --- a/src/script.h +++ b/src/script.h @@ -18,7 +18,6 @@ #include #include -class CCoins; class CKeyStore; class CTransaction; struct CMutableTransaction; @@ -411,25 +410,6 @@ inline std::string ValueString(const std::vector& vch) return HexStr(vch); } -inline std::string StackString(const std::vector >& vStack) -{ - std::string str; - BOOST_FOREACH(const std::vector& vch, vStack) - { - if (!str.empty()) - str += " "; - str += ValueString(vch); - } - return str; -} - - - - - - - - /** Serialized script, used inside transaction inputs and outputs */ class CScript : public std::vector { -- cgit v1.2.3 From 53efb09e4ceaa0ccb4e6271387f5013fe5e1ec75 Mon Sep 17 00:00:00 2001 From: jtimon Date: Sat, 23 Aug 2014 05:09:47 +0200 Subject: Discover some missing includes --- src/script.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/script.h') diff --git a/src/script.h b/src/script.h index c1f5aa1dd5..d17cfe3fa4 100644 --- a/src/script.h +++ b/src/script.h @@ -15,7 +15,6 @@ #include #include -#include #include class CKeyStore; -- cgit v1.2.3