Merge pull request #15 from Bendr0id/master

Fixed gcc build and removed different type warnings
This commit is contained in:
The Kevacoin Project 2020-03-20 10:57:01 -07:00 committed by GitHub
commit 1af81f4d93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,7 @@ struct Params {
/** Block height at which BIP66 becomes active */
int BIP66Height;
/** Block height at which RandomX becomes active */
int RandomXHeight;
uint32_t RandomXHeight;
/**
* Minimum blocks including miner confirmation of the total of 2016 blocks in a retargeting period,
* (nPowTargetTimespan / nPowTargetSpacing) which is also used for BIP9 deployments.

View File

@ -30,6 +30,7 @@
#include <event2/keyvalq_struct.h>
#include <support/events.h>
#include <deque>
#ifdef EVENT__HAVE_NETINET_IN_H
#include <netinet/in.h>