Removed some test code

This commit is contained in:
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 * convert a base58 encoded string into a binary array
* @param b58 the base58 encoded string * @param b58 the base58 encoded string
* @param base58_size the size of the 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 * @param binszp the size of the results buffer
* @returns true(1) on success * @returns true(1) on success
*/ */

View file

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