diff options
author | Suhas Daftuar <sdaftuar@gmail.com> | 2020-01-30 09:35:00 -0500 |
---|---|---|
committer | Suhas Daftuar <sdaftuar@gmail.com> | 2020-07-19 02:05:29 -0400 |
commit | ac88e2eb619821ad7ae1d45d4b40be69051d3999 (patch) | |
tree | 41670146c75c72c3923056642609093a15d8857a /src/protocol.cpp | |
parent | 8e68fc246d09f1e6c6dfa8c676969d97c2eb4334 (diff) |
Add support for tx-relay via wtxid
This adds a field to CNodeState that tracks whether to relay transactions with
that peer via wtxid, instead of txid. As of this commit the field will always
be false, but in a later commit we will add a way to negotiate turning this on
via p2p messages exchanged with the peer.
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 2dfe4bee74..30a0d5dd86 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -177,6 +177,8 @@ std::string CInv::GetCommand() const switch (masked) { case MSG_TX: return cmd.append(NetMsgType::TX); + // WTX is not a message type, just an inv type + case MSG_WTX: return cmd.append("wtx"); case MSG_BLOCK: return cmd.append(NetMsgType::BLOCK); case MSG_FILTERED_BLOCK: return cmd.append(NetMsgType::MERKLEBLOCK); case MSG_CMPCT_BLOCK: return cmd.append(NetMsgType::CMPCTBLOCK); |