Removed some test code

yamux
John Jones 2017-03-23 08:27:21 -05:00
parent 9776ff15a0
commit bd9f219b50
2 changed files with 2 additions and 3 deletions

View File

@ -27,7 +27,7 @@ static const int8_t b58digits_map[] = {
* convert a base58 encoded string into a binary array
* @param b58 the base58 encoded string
* @param base58_size the size of the encoded string
* @param bin the results buffer
* @param bin the results buffer (Q: Why ptr to ptr when nothing allocated?)
* @param binszp the size of the results buffer
* @returns true(1) on success
*/

View File

@ -29,8 +29,7 @@ struct bs_struct {
char *ip;
uint16_t port;
} bootstrap_list[] = {
{ "127.0.0.1", 1234 },
{ "127.0.0.1", 4321 }
{ "192.210.179.217", 5001 }
};
pthread_t pth_kademlia, pth_announce;