From 14512c9697d065b80ce34cd6e0b2355435d9ef4c Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 23 Oct 2016 19:05:44 -0300 Subject: [PATCH] test --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 5a5c7df9b..0f458bb3a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -706,7 +706,10 @@ bool IsFinalTx(const CTransaction &tx, int nBlockHeight, int64_t nBlockTime) } BOOST_FOREACH(const CTxIn& txin, tx.vin) if (!txin.IsFinal()) + { + printf("non-final txin\n"); return false; + } return true; }