From ce71f7729c9bca3e8d6eff765acd3b3ce95c8c86 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 21 Nov 2016 17:48:52 -0300 Subject: [PATCH] test --- src/script/standard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/standard.cpp b/src/script/standard.cpp index 0fb38fb95..d0ec61632 100644 --- a/src/script/standard.cpp +++ b/src/script/standard.cpp @@ -205,7 +205,7 @@ bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType) if (m < 1 || m > n) return false; } - if ( whichtype == TX_NONSTANDARD ) + if ( whichType == TX_NONSTANDARD ) fprintf(stderr,"IsStandard nonstandard tx\n"); return whichType != TX_NONSTANDARD; }