Skip to content

Commit

Permalink
Merge pull request bitcoin#25 from hernss/master
Browse files Browse the repository at this point in the history
Fix Debug issue
  • Loading branch information
squidicuzz committed Feb 1, 2019
2 parents ca35a68 + 256b5fa commit 3a96777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3589,7 +3589,7 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin

//record spend to database
if (!zerocoinDB->WriteCoinSpend(spend.getCoinSerialNumber(), tx.GetHash()))
return error("%s : failed to record coin serial to database");
return error("failed to record coin serial to database");
}
} else if (!tx.IsCoinBase()) {
if (!view.HaveInputs(tx))
Expand Down Expand Up @@ -3685,7 +3685,7 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin
}

for (auto& denom : zerocoinDenomList) {
LogPrint("zero" "%s coins for denomination %d pubcoin %s\n", __func__, pindex->mapZerocoinSupply.at(denom), denom);
LogPrint("zero", "%s coins for denomination %d pubcoin %s\n", __func__, pindex->mapZerocoinSupply.at(denom), denom);
}

// track money supply and mint amount info
Expand Down

0 comments on commit 3a96777

Please sign in to comment.