Trivial: Fix warning introduced by #7053 by casting to uint64_t

This commit is contained in:
Jorge Timón
2015-11-27 15:12:08 +01:00
parent 2a94cd67e8
commit cb491e7788
3 changed files with 3 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ public:
/** Policy: Filter transactions that do not match well-defined patterns */
bool RequireStandard() const { return fRequireStandard; }
int64_t MaxTipAge() const { return nMaxTipAge; }
int64_t PruneAfterHeight() const { return nPruneAfterHeight; }
uint64_t PruneAfterHeight() const { return nPruneAfterHeight; }
/** Make miner stop after a block is found. In RPC, don't return until nGenProcLimit blocks are generated */
bool MineBlocksOnDemand() const { return fMineBlocksOnDemand; }
/** In the future use NetworkIDString() for RPC fields */