change req maturity to 100 from 120

This commit is contained in:
Evan Duffield 2015-02-02 15:54:16 -07:00
parent e2898a2f86
commit ffec62e8ba

View File

@ -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());
}