diff options
| author | Gregory Maxwell <[email protected]> | 2012-05-27 19:26:47 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-05-27 19:26:47 -0700 |
| commit | 20cb17e1f9d5b18fd511614b806b05343c9134b4 (patch) | |
| tree | 3d8d032c89c60b8e6a2863c38d30bcfa803d72ec /src/irc.cpp | |
| parent | Merge pull request #1357 from sipa/keyid (diff) | |
| parent | Add a testnet checkpoint at block 546 (diff) | |
| download | discoin-20cb17e1f9d5b18fd511614b806b05343c9134b4.tar.xz discoin-20cb17e1f9d5b18fd511614b806b05343c9134b4.zip | |
Merge pull request #1392 from gavinandresen/testnet_reset
Testnet reset
Diffstat (limited to 'src/irc.cpp')
| -rw-r--r-- | src/irc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc.cpp b/src/irc.cpp index 104918841..c0b3b7478 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -291,8 +291,8 @@ void ThreadIRCSeed2(void* parg) } if (fTestNet) { - Send(hSocket, "JOIN #bitcoinTEST\r"); - Send(hSocket, "WHO #bitcoinTEST\r"); + Send(hSocket, "JOIN #bitcoinTEST3\r"); + Send(hSocket, "WHO #bitcoinTEST3\r"); } else { // randomly join #bitcoin00-#bitcoin99 int channel_number = GetRandInt(100); |