diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-11-14 22:18:10 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-11-16 00:12:33 +0100 |
commit | e754cf4133c9c97e320ae5dec394e338524e650b (patch) | |
tree | b2cf9b6c6c9d7f462c0e9874626093955c928a46 /src/serialize.h | |
parent | 6caffb5358b1e403b293846b3c832433fa928e46 (diff) |
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 9e14666fac..f2626281c1 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) \ |