Merge #8664: Fix segwit-related wallet bug

c40b034 Clear witness with vin/vout in CWallet::CreateTransaction() (Suhas Daftuar)
This commit is contained in:
Wladimir J. van der Laan
2016-09-09 12:24:30 +02:00

View File

@ -2215,6 +2215,7 @@ bool CWallet::CreateTransaction(const vector<CRecipient>& vecSend, CWalletTx& wt
nChangePosInOut = nChangePosRequest;
txNew.vin.clear();
txNew.vout.clear();
txNew.wit.SetNull();
wtxNew.fFromMe = true;
bool fFirst = true;