diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2015-03-25 15:00:32 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2015-04-10 15:33:37 -0400 |
commit | fd311996e877d567a4e34a19b47e94d66e07100a (patch) | |
tree | f31151a0086d06c8463de3c5b33471c11922930b /src/consensus | |
parent | c8a13501196fc79a3f728683b74f9d586dda46c1 (diff) |
consensus: don't use arith_uint256 in consensus.h
Requiring arith_uint256 at such a base level is not good for modularity.
Diffstat (limited to 'src/consensus')
-rw-r--r-- | src/consensus/params.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/consensus/params.h b/src/consensus/params.h index c4cfa48c7e..35d447b712 100644 --- a/src/consensus/params.h +++ b/src/consensus/params.h @@ -6,7 +6,6 @@ #ifndef BITCOIN_CONSENSUS_CONSENSUS_PARAMS_H #define BITCOIN_CONSENSUS_CONSENSUS_PARAMS_H -#include "arith_uint256.h" #include "uint256.h" namespace Consensus { @@ -21,7 +20,7 @@ struct Params { int nMajorityRejectBlockOutdated; int nMajorityWindow; /** Proof of work parameters */ - arith_uint256 powLimit; + uint256 powLimit; bool fPowAllowMinDifficultyBlocks; int64_t nPowTargetSpacing; int64_t nPowTargetTimespan; |