From ffec62e8bab0571d24e8a93af34b0a26c32db38c Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Mon, 2 Feb 2015 15:54:16 -0700 Subject: [PATCH] change req maturity to 100 from 120 --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index d5e545db59..bd3434d5cd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1197,7 +1197,7 @@ int CMerkleTx::GetBlocksToMaturity() const { if (!IsCoinBase()) return 0; - return max(0, (COINBASE_MATURITY+20) - GetDepthInMainChain()); + return max(0, COINBASE_MATURITY - GetDepthInMainChain()); }