aboutsummaryrefslogtreecommitdiff
path: root/src/script/interpreter.cpp
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2017-03-28 08:40:16 +0200
committerpracticalswift <[email protected]>2017-04-26 21:20:02 +0200
commitb51aaf1c42d9936ddbe8ec48a0d9b675221ab7ba (patch)
tree97be0a701731d6c02e528c95b5023dbafc69d527 /src/script/interpreter.cpp
parentMerge #10270: Remove Clang workaround for Boost 1.46 (diff)
downloaddiscoin-b51aaf1c42d9936ddbe8ec48a0d9b675221ab7ba.tar.xz
discoin-b51aaf1c42d9936ddbe8ec48a0d9b675221ab7ba.zip
Remove unused C++ code not covered by unit tests
Diffstat (limited to 'src/script/interpreter.cpp')
-rw-r--r--src/script/interpreter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp
index 8ecf0bbda..f4e5313a7 100644
--- a/src/script/interpreter.cpp
+++ b/src/script/interpreter.cpp
@@ -247,10 +247,10 @@ bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript&
{
static const CScriptNum bnZero(0);
static const CScriptNum bnOne(1);
- static const CScriptNum bnFalse(0);
- static const CScriptNum bnTrue(1);
+ // static const CScriptNum bnFalse(0);
+ // static const CScriptNum bnTrue(1);
static const valtype vchFalse(0);
- static const valtype vchZero(0);
+ // static const valtype vchZero(0);
static const valtype vchTrue(1, 1);
CScript::const_iterator pc = script.begin();