Well, I'd say that indents aren't needed here.
authorCryptoManiac <balthazar@yandex.ru>
Sun, 21 Feb 2016 22:44:21 +0000 (01:44 +0300)
committerCryptoManiac <balthazar@yandex.ru>
Sun, 21 Feb 2016 22:46:11 +0000 (01:46 +0300)
src/script.cpp

index eb1dc9a..2eb71f0 100644 (file)
@@ -539,8 +539,8 @@ bool EvalScript(vector<vector<unsigned char> >& stack, const CScript& script, co
                     // logic is the same, all that differs is what we are comparing
                     // the lock time to.
                     int64_t txToLockTime = (int64_t)~txTo.vin[nIn].nSequence;
-                        if (txToLockTime >= SEQUENCE_THRESHOLD)
-                            return false;
+                    if (txToLockTime >= SEQUENCE_THRESHOLD)
+                        return false;
 
                     if (!(
                         (txToLockTime <  LOCKTIME_THRESHOLD && nInvSequence <  LOCKTIME_THRESHOLD) ||