Skip to content

Commit

Permalink
Fix that error
Browse files Browse the repository at this point in the history
  • Loading branch information
ambiprofin committed Feb 9, 2016
1 parent 6a9ac71 commit 8d0573f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,7 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs, map<uint256, CTx

// enforce transaction fees for every block
int64_t nRequiredFee = GetMinFee(*this);
if (nTxFee < nRequiredFee)
if (nTxFee < nRequiredFee && (pindexBest->nTime) > 1454926540)
return fBlock? DoS(100, error("ConnectInputs() : %s not paying required fee=%s, paid=%s", GetHash().ToString(), FormatMoney(nRequiredFee), FormatMoney(nTxFee))) : false;

nFees += nTxFee;
Expand Down

0 comments on commit 8d0573f

Please sign in to comment.