Browse Source

Move proto version to version.h. Reduce header deps a bit more.

pull/145/head
Jeff Garzik 12 years ago
committed by Pieter Wuille
parent
commit
ccd65d4261
  1. 1
      src/addrman.h
  2. 1
      src/protocol.h
  3. 5
      src/uint256.h

1
src/addrman.h

@ -6,6 +6,7 @@
#include "netbase.h"
#include "protocol.h"
#include "util.h"
#include <map>

1
src/protocol.h

@ -12,7 +12,6 @@
#include "serialize.h"
#include "netbase.h"
#include "util.h"
#include <string>
#include "uint256.h"

5
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;

Loading…
Cancel
Save