net: define NodeId as an int64_t

This should make occurances of NodeId wrapping essentially impossible for
real-world usage.
This commit is contained in:
Cory Fields
2017-04-10 15:00:23 -04:00
parent 471ed00fcd
commit c851be4b25
3 changed files with 4 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ static const ServiceFlags REQUIRED_SERVICES = NODE_NETWORK;
// NOTE: When adjusting this, update rpcnet:setban's help ("24h")
static const unsigned int DEFAULT_MISBEHAVING_BANTIME = 60 * 60 * 24; // Default 24-hour ban
typedef int NodeId;
typedef int64_t NodeId;
struct AddedNodeInfo
{