Browse Source

Clear witness with vin/vout in CWallet::CreateTransaction()

0.14
Suhas Daftuar 8 years ago
parent
commit
c40b034327
  1. 1
      src/wallet/wallet.cpp

1
src/wallet/wallet.cpp

@ -2209,6 +2209,7 @@ bool CWallet::CreateTransaction(const vector<CRecipient>& vecSend, CWalletTx& wt @@ -2209,6 +2209,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;

Loading…
Cancel
Save