Browse Source

uint256: remove include where not required

2upstream
Tanguy Pruvot 9 years ago
parent
commit
48b3f119be
  1. 6
      bignum.hpp
  2. 1
      fuguecoin.cpp
  3. 1
      groestlcoin.cpp
  4. 1
      myriadgroestl.cpp

6
bignum.hpp

@ -5,7 +5,9 @@ @@ -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 <map>
#include <limits>
@ -13,6 +15,8 @@ @@ -13,6 +15,8 @@
#include <stdexcept>
#include <vector>
#include "uint256.h"
#include <openssl/bn.h>
#include "serialize.hpp"

1
fuguecoin.cpp

@ -2,7 +2,6 @@ @@ -2,7 +2,6 @@
#include <stdint.h>
#include <cuda_runtime.h>
#include "uint256.h"
#include "sph/sph_fugue.h"
#include "miner.h"

1
groestlcoin.cpp

@ -3,7 +3,6 @@ @@ -3,7 +3,6 @@
#include <cuda_runtime.h>
#include <openssl/sha.h>
#include "uint256.h"
#include "sph/sph_groestl.h"
#include "cuda_groestlcoin.h"

1
myriadgroestl.cpp

@ -3,7 +3,6 @@ @@ -3,7 +3,6 @@
#include <cuda_runtime.h>
#include <openssl/sha.h>
#include "uint256.h"
#include "sph/sph_groestl.h"
#include "miner.h"

Loading…
Cancel
Save