diff options
| author | Pieter Wuille <[email protected]> | 2012-11-14 22:18:10 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-11-16 00:12:33 +0100 |
| commit | e754cf4133c9c97e320ae5dec394e338524e650b (patch) | |
| tree | b2cf9b6c6c9d7f462c0e9874626093955c928a46 /src/serialize.h | |
| parent | Merge pull request #1984 from grimd34th/patch-2 (diff) | |
| download | discoin-e754cf4133c9c97e320ae5dec394e338524e650b.tar.xz discoin-e754cf4133c9c97e320ae5dec394e338524e650b.zip | |
Split off CBlockHeader from CBlock
Cleaner and removes the need for the application-specific flags in
serialize.h.
Diffstat (limited to 'src/serialize.h')
| -rw-r--r-- | src/serialize.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/serialize.h b/src/serialize.h index 9e14666fa..f2626281c 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -50,10 +50,6 @@ enum SER_NETWORK = (1 << 0), SER_DISK = (1 << 1), SER_GETHASH = (1 << 2), - - // modifiers - SER_SKIPSIG = (1 << 16), - SER_BLOCKHEADERONLY = (1 << 17), }; #define IMPLEMENT_SERIALIZE(statements) \ |