Browse Source

Fix missed change to WalletTx structure

0.14
Alex Morcos 8 years ago
parent
commit
28f8ae8adf
  1. 3
      src/qt/walletmodel.cpp

3
src/qt/walletmodel.cpp

@ -335,9 +335,8 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran @@ -335,9 +335,8 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran
if(!wallet->CommitTransaction(*newTx, *keyChange, g_connman.get(), state))
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());
}

Loading…
Cancel
Save