Browse Source

Merge pull request #15 from Bendr0id/master

Fixed gcc build and removed different type warnings
keva-gui
The Kevacoin Project 5 years ago committed by GitHub
parent
commit
1af81f4d93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/consensus/params.h
  2. 1
      src/httpserver.cpp

2
src/consensus/params.h

@ -59,7 +59,7 @@ struct Params { @@ -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.

1
src/httpserver.cpp

@ -30,6 +30,7 @@ @@ -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>

Loading…
Cancel
Save