aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-11-23 16:15:50 +0100
committerMarcoFalke <falke.marco@gmail.com>2020-11-23 21:19:50 +0100
commitfada14b948cac147198e3b685b5dd8cb72dc2911 (patch)
tree4a84ed9e578c3297a59e5cb06c1667551fafc346 /src/qt/walletmodel.cpp
parentfa8bdb048e65cae2d26bea3f991717a856e2fb39 (diff)
downloadbitcoin-fada14b948cac147198e3b685b5dd8cb72dc2911.tar.xz
Treat CDataStream bytes as uint8_t
Also, rename CSerializeData to SerializeData
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r--src/qt/walletmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp
index cad472b43b..907444bff8 100644
--- a/src/qt/walletmodel.cpp
+++ b/src/qt/walletmodel.cpp
@@ -244,7 +244,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran
CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
ssTx << *newTx;
- transaction_array.append(&(ssTx[0]), ssTx.size());
+ transaction_array.append((const char*)&(ssTx[0]), ssTx.size());
}
// Add addresses / update labels that we've sent to the address book,