Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #150 from digibyte/6.16.5
Browse files Browse the repository at this point in the history
New Client Download Sync Fix
  • Loading branch information
digibyte committed Sep 21, 2018
2 parents d340fd0 + c6f84cc commit a237b16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/consensus/tx_verify.cpp
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/qt/intro.cpp
Expand Up @@ -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)));
Expand Down

0 comments on commit a237b16

Please sign in to comment.