From: Gavin Andresen Date: Thu, 26 Apr 2012 14:18:35 +0000 (-0400) Subject: Undo part of c2e8c8ac to fix issue#1148 X-Git-Tag: v0.4.0-unstable~129^2~46 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=08e663d7e2fa194efbffef41cffe9626b71acdaa Undo part of c2e8c8ac to fix issue#1148 --- diff --git a/src/script.cpp b/src/script.cpp index 660023e..65e9b7c 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -939,7 +939,7 @@ bool EvalScript(vector >& stack, const CScript& script, co { // ([sig ...] num_of_signatures [pubkey ...] num_of_pubkeys -- bool) - unsigned int i = 1; + int i = 1; if (stack.size() < i) return false;