diff --git a/src/consensus/tx_verify.cpp b/src/consensus/tx_verify.cpp index 3c8dd345ed..e927828fff 100644 --- a/src/consensus/tx_verify.cpp +++ b/src/consensus/tx_verify.cpp @@ -220,7 +220,7 @@ bool Consensus::CheckTxInputs(const CTransaction& tx, CValidationState& state, c assert(!coin.IsSpent()); // If prev is coinbase, check that it's matured if (coin.IsCoinBase()) { - if (coin.nHeight < Params().multiAlgoDiffChangeTarget) { + if (coin.nHeight < 145000) { if (nSpendHeight - coin.nHeight < COINBASE_MATURITY) return state.Invalid(false, REJECT_INVALID, "bad-txns-premature-spend-of-coinbase", diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 5e763b5570..1d04bc475b 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -127,7 +127,7 @@ Intro::Intro(QWidget *parent) : ui->lblExplanation1->setText(ui->lblExplanation1->text() .arg(tr(PACKAGE_NAME)) .arg(BLOCK_CHAIN_SIZE) - .arg(2009) + .arg(2014) .arg(tr("DigiByte")) ); ui->lblExplanation2->setText(ui->lblExplanation2->text().arg(tr(PACKAGE_NAME)));