From 03660ecce67598ba254fc5cf832161ce0d420188 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 30 Jul 2018 09:22:39 -1100 Subject: [PATCH] Min vin 0.01 --- src/cc/faucet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/faucet.cpp b/src/cc/faucet.cpp index de06a1612..9359a4eb7 100644 --- a/src/cc/faucet.cpp +++ b/src/cc/faucet.cpp @@ -136,7 +136,7 @@ uint64_t AddFaucetInputs(struct CCcontract_info *cp,CMutableTransaction &mtx,CPu // prevent dup if ( GetTransaction(txid,vintx,hashBlock,false) != 0 ) { - if ( (nValue= IsFaucetvout(cp,vintx,(int32_t)it->first.index)) > 10000 ) + if ( (nValue= IsFaucetvout(cp,vintx,(int32_t)it->first.index)) > 1000000 ) { if ( total != 0 && maxinputs != 0 ) mtx.vin.push_back(CTxIn(txid,(int32_t)it->first.index,CScript()));