diff options
| author | Jeff Garzik <[email protected]> | 2012-04-15 18:20:05 -0400 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-04-17 20:02:38 +0200 |
| commit | ccd65d426156c3d5b7a8f1123210decd1f06fe42 (patch) | |
| tree | 6dc2f45f16ce625fae84fad2bda4fd2511d752db /src/uint256.h | |
| parent | Move CWalletDB code to new walletdb module. (diff) | |
| download | discoin-ccd65d426156c3d5b7a8f1123210decd1f06fe42.tar.xz discoin-ccd65d426156c3d5b7a8f1123210decd1f06fe42.zip | |
Move proto version to version.h. Reduce header deps a bit more.
Diffstat (limited to 'src/uint256.h')
| -rw-r--r-- | src/uint256.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/uint256.h b/src/uint256.h index 309c1f799..352458053 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -5,12 +5,13 @@ #ifndef BITCOIN_UINT256_H #define BITCOIN_UINT256_H -#include "serialize.h" - #include <limits.h> +#include <string.h> #include <string> #include <vector> +#include "version.h" + typedef long long int64; typedef unsigned long long uint64; |