]> Git Repo - VerusCoin.git/commitdiff
Test
authorjl777 <[email protected]>
Sun, 4 Mar 2018 08:01:29 +0000 (10:01 +0200)
committerjl777 <[email protected]>
Sun, 4 Mar 2018 08:01:29 +0000 (10:01 +0200)
src/script/interpreter.cpp

index 1059cb74d3c4ddd3e6fe749d4f8e4d1c18fef94e..632c954af97297bb0606e1a58581c09d411c88e3 100644 (file)
@@ -1130,7 +1130,7 @@ bool TransactionSignatureChecker::CheckLockTime(const CScriptNum& nLockTime) con
     // comparison is a simple numeric one.
     if (nLockTime > (int64_t)txTo->nLockTime)
     {
-        fprintf(stderr,"CLTV error: nLockTime %u > %u txTo->nLockTime\n",(uint32_t)nLockTime,(uint32_t)txTo->nLockTime);
+        fprintf(stderr,"CLTV error: nLockTime %u > %u txTo->nLockTime\n",(uint32_t)(int64_t)nLockTime,(uint32_t)txTo->nLockTime);
         return false;
     }
 
This page took 0.027909 seconds and 4 git commands to generate.