aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-05-10 19:48:11 +0200
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-05-11 00:20:57 +0200
commit51e9393c1f6c9eaac554f821f5327f63bd09c8cf (patch)
treedf9eb5573c819652a8a337a5e87af18cda0083a2 /src/net.h
parent88d8b4e182bfc75e8496f7046af7aab93307b9d0 (diff)
downloadbitcoin-51e9393c1f6c9eaac554f821f5327f63bd09c8cf.tar.xz
refactor: s/command/msg_type/ in CNetMsgMaker and CSerializedNetMsg
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.h b/src/net.h
index 35d442e61f..3190096836 100644
--- a/src/net.h
+++ b/src/net.h
@@ -108,7 +108,7 @@ struct CSerializedNetMsg
CSerializedNetMsg& operator=(const CSerializedNetMsg&) = delete;
std::vector<unsigned char> data;
- std::string command;
+ std::string m_type;
};