diff options
| author | Cory Fields <[email protected]> | 2015-03-25 15:00:32 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-04-10 15:33:37 -0400 |
| commit | fd311996e877d567a4e34a19b47e94d66e07100a (patch) | |
| tree | f31151a0086d06c8463de3c5b33471c11922930b /src/consensus/params.h | |
| parent | Merge pull request #5991 (diff) | |
| download | discoin-fd311996e877d567a4e34a19b47e94d66e07100a.tar.xz discoin-fd311996e877d567a4e34a19b47e94d66e07100a.zip | |
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/params.h')
| -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 c4cfa48c7..35d447b71 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; |