mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 07:17:53 +00:00
Merge pull request #428 from sipa/mintxfeefix
Fix for small change outputs
This commit is contained in:
commit
b6d19aefa0
@ -941,9 +941,17 @@ bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CW
|
|||||||
dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
|
dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fill a vout back to self with any change
|
int64 nChange = nValueIn - nValue - nFeeRet;
|
||||||
int64 nChange = nValueIn - nTotalValue;
|
// if sub-cent change is required, the fee must be raised to at least MIN_TX_FEE
|
||||||
if (nChange >= CENT)
|
// or until nChange becomes zero
|
||||||
|
if (nFeeRet < MIN_TX_FEE && nChange > 0 && nChange < CENT)
|
||||||
|
{
|
||||||
|
int64 nMoveToFee = min(nChange, MIN_TX_FEE - nFeeRet);
|
||||||
|
nChange -= nMoveToFee;
|
||||||
|
nFeeRet += nMoveToFee;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nChange > 0)
|
||||||
{
|
{
|
||||||
// Note: We use a new key here to keep it from being obvious which side is the change.
|
// Note: We use a new key here to keep it from being obvious which side is the change.
|
||||||
// The drawback is that by not reusing a previous key, the change may be lost if a
|
// The drawback is that by not reusing a previous key, the change may be lost if a
|
||||||
|
Loading…
Reference in New Issue
Block a user