Document assumptions that are being made to avoid division by zero
This commit is contained in:
parent
3f726c99f8
commit
55509f1a11
3 changed files with 3 additions and 0 deletions
|
@ -503,6 +503,7 @@ void TxConfirmStats::removeTx(unsigned int entryHeight, unsigned int nBestSeenHe
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!inBlock && (unsigned int)blocksAgo >= scale) { // Only counts as a failure if not confirmed for entire period
|
if (!inBlock && (unsigned int)blocksAgo >= scale) { // Only counts as a failure if not confirmed for entire period
|
||||||
|
assert(scale != 0);
|
||||||
unsigned int periodsAgo = blocksAgo / scale;
|
unsigned int periodsAgo = blocksAgo / scale;
|
||||||
for (size_t i = 0; i < periodsAgo && i < failAvg.size(); i++) {
|
for (size_t i = 0; i < periodsAgo && i < failAvg.size(); i++) {
|
||||||
failAvg[i][bucketindex]++;
|
failAvg[i][bucketindex]++;
|
||||||
|
|
|
@ -581,6 +581,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog)
|
||||||
QString toolTipDust = tr("This label turns red if any recipient receives an amount smaller than the current dust threshold.");
|
QString toolTipDust = tr("This label turns red if any recipient receives an amount smaller than the current dust threshold.");
|
||||||
|
|
||||||
// how many satoshis the estimated fee can vary per byte we guess wrong
|
// how many satoshis the estimated fee can vary per byte we guess wrong
|
||||||
|
assert(nBytes != 0);
|
||||||
double dFeeVary = (double)nPayFee / nBytes;
|
double dFeeVary = (double)nPayFee / nBytes;
|
||||||
|
|
||||||
QString toolTip4 = tr("Can vary +/- %1 satoshi(s) per input.").arg(dFeeVary);
|
QString toolTip4 = tr("Can vary +/- %1 satoshi(s) per input.").arg(dFeeVary);
|
||||||
|
|
|
@ -2741,6 +2741,7 @@ bool CWallet::CreateTransaction(const std::vector<CRecipient>& vecSend, CWalletT
|
||||||
|
|
||||||
if (recipient.fSubtractFeeFromAmount)
|
if (recipient.fSubtractFeeFromAmount)
|
||||||
{
|
{
|
||||||
|
assert(nSubtractFeeFromAmount != 0);
|
||||||
txout.nValue -= nFeeRet / nSubtractFeeFromAmount; // Subtract fee equally from each selected recipient
|
txout.nValue -= nFeeRet / nSubtractFeeFromAmount; // Subtract fee equally from each selected recipient
|
||||||
|
|
||||||
if (fFirst) // first receiver pays the remainder not divisible by output count
|
if (fFirst) // first receiver pays the remainder not divisible by output count
|
||||||
|
|
Loading…
Reference in a new issue