|
|
@ -2566,9 +2566,10 @@ bool CWallet::CreateTransaction(const vector<CRecipient>& vecSend, CWalletTx& wt |
|
|
|
// to avoid conflicting with other possible uses of nSequence,
|
|
|
|
// to avoid conflicting with other possible uses of nSequence,
|
|
|
|
// and in the spirit of "smallest posible change from prior
|
|
|
|
// and in the spirit of "smallest posible change from prior
|
|
|
|
// behavior."
|
|
|
|
// behavior."
|
|
|
|
|
|
|
|
bool rbf = coinControl ? coinControl->signalRbf : fWalletRbf; |
|
|
|
for (const auto& coin : setCoins) |
|
|
|
for (const auto& coin : setCoins) |
|
|
|
txNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second,CScript(), |
|
|
|
txNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second,CScript(), |
|
|
|
std::numeric_limits<unsigned int>::max() - (fWalletRbf ? 2 : 1))); |
|
|
|
std::numeric_limits<unsigned int>::max() - (rbf ? 2 : 1))); |
|
|
|
|
|
|
|
|
|
|
|
// Fill in dummy signatures for fee calculation.
|
|
|
|
// Fill in dummy signatures for fee calculation.
|
|
|
|
int nIn = 0; |
|
|
|
int nIn = 0; |
|
|
|