diff options
| author | Mike Hearn <[email protected]> | 2014-05-19 22:25:17 +0200 |
|---|---|---|
| committer | Mike Hearn <[email protected]> | 2014-08-11 13:59:47 +0200 |
| commit | da2ec100f3681176f60dec6dc675fc64147ade3a (patch) | |
| tree | 356e017dd8ea38a9e1e2c7301516fccac6ea1cef /src/protocol.h | |
| parent | Merge branch 'patch-4' of git://github.com/benhc123/bitcoin into merge-PR4653 (diff) | |
| download | discoin-da2ec100f3681176f60dec6dc675fc64147ade3a.tar.xz discoin-da2ec100f3681176f60dec6dc675fc64147ade3a.zip | |
Add a getutxos command to the p2p protocol. It allows querying of the UTXO set
given a set of outpoints.
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 1f2327429..6019dab0c 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 |