mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-06-02 23:42:33 +02:00
Merge pull request #4199
0a59723
Remove extraneous c_str (R E Broadley)
This commit is contained in:
commit
dff9d2f293
@ -4463,7 +4463,7 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
|
|||||||
uint256 hash = state.vBlocksToDownload.front();
|
uint256 hash = state.vBlocksToDownload.front();
|
||||||
vGetData.push_back(CInv(MSG_BLOCK, hash));
|
vGetData.push_back(CInv(MSG_BLOCK, hash));
|
||||||
MarkBlockAsInFlight(pto->GetId(), hash);
|
MarkBlockAsInFlight(pto->GetId(), hash);
|
||||||
LogPrint("net", "Requesting block %s from %s\n", hash.ToString().c_str(), state.name.c_str());
|
LogPrint("net", "Requesting block %s from %s\n", hash.ToString(), state.name);
|
||||||
if (vGetData.size() >= 1000)
|
if (vGetData.size() >= 1000)
|
||||||
{
|
{
|
||||||
pto->PushMessage("getdata", vGetData);
|
pto->PushMessage("getdata", vGetData);
|
||||||
|
Loading…
Reference in New Issue
Block a user