diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-25 10:01:28 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-25 10:37:40 +0200 |
commit | 11270ebde4b27f9df7e2098b647e406079e5fb1d (patch) | |
tree | a1074d48dd2d6d6d96af18bd10f0cce362cbc2ad /src/protocol.h | |
parent | 41abb021227568b321be8073eeebb0b9ab654639 (diff) | |
parent | da2ec100f3681176f60dec6dc675fc64147ade3a (diff) |
Merge pull request #4351
da2ec10 Add a getutxos command to the p2p protocol. It allows querying of the UTXO set given a set of outpoints. (Mike Hearn)
Diffstat (limited to 'src/protocol.h')
-rw-r--r-- | src/protocol.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/protocol.h b/src/protocol.h index d7565584af..94d313e9c0 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -64,6 +64,7 @@ class CMessageHeader enum { NODE_NETWORK = (1 << 0), + NODE_GETUTXOS = (1 << 1), // Bits 24-31 are reserved for temporary experiments. Just pick a bit that // isn't getting used, or one not being used much, and notify the |