From 48b3f119bebaa9e61ca688cc2a17c5061ede1d55 Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Thu, 11 Jun 2015 00:47:07 +0200 Subject: [PATCH] uint256: remove include where not required --- bignum.hpp | 6 +++++- fuguecoin.cpp | 1 - groestlcoin.cpp | 1 - myriadgroestl.cpp | 1 - 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bignum.hpp b/bignum.hpp index ffa01ae..c28aee4 100644 --- a/bignum.hpp +++ b/bignum.hpp @@ -5,7 +5,9 @@ #ifndef BITCOIN_BIGNUM_H #define BITCOIN_BIGNUM_H -#define PROTOCOL_VERSION 1 +#ifndef PROTOCOL_VERSION +#define PROTOCOL_VERSION 70001 +#endif #include #include @@ -13,6 +15,8 @@ #include #include +#include "uint256.h" + #include #include "serialize.hpp" diff --git a/fuguecoin.cpp b/fuguecoin.cpp index d2f8dd9..77ef653 100644 --- a/fuguecoin.cpp +++ b/fuguecoin.cpp @@ -2,7 +2,6 @@ #include #include -#include "uint256.h" #include "sph/sph_fugue.h" #include "miner.h" diff --git a/groestlcoin.cpp b/groestlcoin.cpp index 6956102..bf39c8f 100644 --- a/groestlcoin.cpp +++ b/groestlcoin.cpp @@ -3,7 +3,6 @@ #include #include -#include "uint256.h" #include "sph/sph_groestl.h" #include "cuda_groestlcoin.h" diff --git a/myriadgroestl.cpp b/myriadgroestl.cpp index 4186334..13b85f4 100644 --- a/myriadgroestl.cpp +++ b/myriadgroestl.cpp @@ -3,7 +3,6 @@ #include #include -#include "uint256.h" #include "sph/sph_groestl.h" #include "miner.h"