Merge #9296: Fix missed change to WalletTx structure

28f8ae8 Fix missed change to WalletTx structure (Alex Morcos)
This commit is contained in:
Wladimir J. van der Laan 2016-12-06 15:41:15 +01:00 committed by Alexander Block
parent 19958fecf9
commit 63d610d13a

View File

@ -386,9 +386,8 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran
if(!wallet->CommitTransaction(*newTx, *keyChange, g_connman.get(), state, recipients[0].fUseInstantSend ? NetMsgType::TXLOCKREQUEST : NetMsgType::TX))
return SendCoinsReturn(TransactionCommitFailed, QString::fromStdString(state.GetRejectReason()));
CTransaction* t = (CTransaction*)newTx;
CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
ssTx << *t;
ssTx << *newTx->tx;
transaction_array.append(&(ssTx[0]), ssTx.size());
}