reverted pool change

This commit is contained in:
wmpadmin 2018-06-21 13:51:02 +02:00
parent 5d012e821a
commit 27ba0f7367
2 changed files with 3 additions and 4 deletions

View File

@ -10,11 +10,10 @@ _The server_ is written in **C#**, **optionally calling C**-routines to check ha
_The client_ runs in the browser using javascript and webassembly.
**websockets** are used for the connection between the client and the server, **webassembly** to perform hash calculations, **web workers** for threads.
# What is new?
# What is new (you really should update!)?
- **June 15, 2018**
- Support for blocks with more than 2^8 transactions. (**client-side** / **server-side**).
- New donation pool (supportxmr) PLEASE UPDATE!!!
- **May 21, 2018**
- Support for multiple open tabs. Only one tab is constantly mining if several tabs/browser windows are open. (**client-side**).

View File

@ -27,9 +27,9 @@ namespace Server {
// thank you for leaving this in.
public const double DonationLevel = 0.03;
public const string DevAddress = "49kkH7rdoKyFsb1kYPKjCYiR2xy1XdnJNAY1e7XerwQFb57XQaRP7Npfk5xm1MezGn2yRBz6FWtGCFVKnzNTwSGJ3ZrLtHU";
public const string DevPoolUrl = "pool.supportxmr.com";
public const string DevPoolUrl = "gulf.moneroocean.stream";
public const string DevPoolPwd = "x"; // if you want, you can change this to something funny
public const int DevPoolPort = 3333;
public const int DevPoolPort = 10064;
}