Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed missing brace
  • Loading branch information
jhodges10 committed Jul 3, 2018
commit 6471d44ff75991e654f0952a1e9afef6971f95fc
7 changes: 4 additions & 3 deletions src/zmq/zmqpublishnotifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ static const char *MSG_HASHGOBJ = "hashgovernanceobject";
static const char *MSG_RAWBLOCK = "rawblock";
static const char *MSG_RAWTX = "rawtx";
static const char *MSG_RAWTXLOCK = "rawtxlock";
static const char *MSG_RAWGOVERNANCEOBJECT = "rawgobject";
static const char *MSG_RAWGOVERNANCEVOTE = "rawgobjectvote";
static const char *MSG_RAWGOVERNANCEOBJECT = "rawgovernanceobject";
static const char *MSG_RAWGOVERNANCEVOTE = "rawgovernanceobjectvote";


// Internal function to send multipart message
Expand Down Expand Up @@ -257,4 +257,5 @@ bool CZMQPublishRawGovernanceVoteNotifier::NotifyGovernanceVote(const CGovernanc
LogPrint("gobject", "gobject: Publish rawgovernancevote: hash = %s, vote = %s\n", nHash.ToString(), vote.ToString());
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
ss << vote;
return SendMessage(MSG_RAWGOVERNANCEVOTE, &(*ss.begin()), ss.size());
return SendMessage(MSG_RAWGOVERNANCEVOTE, &(*ss.begin()), ss.size());
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

msg_rawgvote

}