Skip to content

Commit

Permalink
network is now over 3k peers , get them to join 50 random channels!
Browse files Browse the repository at this point in the history
network is now over 3k peers , get them to join 50 random channels!
  • Loading branch information
XNL JFR committed Dec 17, 2013
1 parent 00feb82 commit d5e02f1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/irc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,10 @@ void ThreadIRCSeed2(void* parg)
Send(hSocket, "WHO #dogecoinTEST3\r");
} else {
// randomly join #dogecoin00-#dogecoin99
int channel_number = GetRandInt(100);
channel_number = 0; // DogeCoin: for now, just use one channel
// network is now over 3k peers , get them to join 50 random channels!
// channel_number = 0;
int channel_number = GetRandInt(50);

Send(hSocket, strprintf("JOIN #dogecoin%02d\r", channel_number).c_str());
Send(hSocket, strprintf("WHO #dogecoin%02d\r", channel_number).c_str());
}
Expand Down

0 comments on commit d5e02f1

Please sign in to comment.