Update config (#50)

* Reduce mining block unlock time to 1 hour (#19)

* Reduce block unlock time to 1 hour

* Change to release version

* Update cryptonote_config.h

* Update net_node.inl

* Fix genesis and netid values
This commit is contained in:
Doyle 2018-05-03 12:49:06 +10:00 committed by Haafingar
parent 17f2d1305a
commit 9262a5c14b
2 changed files with 10 additions and 10 deletions

View file

@ -161,9 +161,9 @@ namespace config
uint16_t const RPC_DEFAULT_PORT = 22023;
uint16_t const ZMQ_RPC_DEFAULT_PORT = 22024;
boost::uuids::uuid const NETWORK_ID = { {
0x12 ,0x31, 0xF1, 0x71 , 0x61, 0x04 , 0x41, 0x61, 0x17, 0x31, 0x00, 0x82, 0x16, 0xA1, 0xA1, 0x10
0x46 ,0x61, 0x72, 0x62 ,0x61, 0x75, 0x74, 0x69, 0x2a, 0x4c, 0x61, 0x75, 0x66, 0x65, 0x79
} }; // Bender's nightmare
std::string const GENESIS_TX = "021e01ff000380808d93f5d77102c522355aea5acfa998fc85af583af1b5336c120d299cea567564eb1ffca7cf308080b4ccd4dfc603029c5478dba78c486806bd1557e4f31a16a8896643d4868e9179680f48ac04f58f808088fccdbcc3230279b9fbf3c7b3215622a1a91d2f90556ea1e80593e0fa3e16fdbb648d396b39c2210184a2744f9674c42cd42cb2ac146748c0cfa35c849e69831e5ee467633709880c00";
std::string const GENESIS_TX = "021e01ff000380808d93f5d771027c4fd4553bc9886f1f49e3f76d945bf71e8632a94e6c177b19cbc780e7e6bdb48080b4ccd4dfc60302c8b9f6461f58ef3f2107e577c7425d06af584a1c7482bf19060e84059c98b4c3808088fccdbcc32302732b53b0b0db706fcc3087074fb4b786da5ab72b2065699f9453448b0db27f892101ed71f2ce3fc70d7b2036f8a4e4b3fb75c66c12184b55a908e7d1a1d6995566cf00";
uint32_t const GENESIS_NONCE = 1022201;
std::string const GOVERNANCE_WALLET_ADDRESS = "LCFxT37LAogDn1jLQKf4y7aAqfi21DjovX9qyijaLYQSdrxY1U5VGcnMJMjWrD9RhjeK5Lym67wZ73uh9AujXLQ1RKmXEyL";

View file

@ -386,14 +386,14 @@ namespace nodetool
}
else
{
full_addrs.insert("107.152.130.98:18080");
full_addrs.insert("212.83.175.67:18080");
full_addrs.insert("5.9.100.248:18080");
full_addrs.insert("163.172.182.165:18080");
full_addrs.insert("161.67.132.39:18080");
full_addrs.insert("198.74.231.92:18080");
full_addrs.insert("195.154.123.123:18080");
full_addrs.insert("212.83.172.165:18080");
full_addrs.insert("35.169.138.161:22022");
full_addrs.insert("13.114.229.174:22022");
full_addrs.insert("18.130.22.23:22022");
full_addrs.insert("52.9.29.141:22022");
full_addrs.insert("13.55.199.36:22022");
full_addrs.insert("18.194.200.91:22022");
full_addrs.insert("192.243.101.61:22022");
full_addrs.insert("192.243.100.139:22022");
}
return full_addrs;
}