Skip to content

Commit 3eb4c56

Browse files
f-r00tgitbook-bot
authored andcommitted
GITBOOK-33: Edited mining pool guide
1 parent 92e7acd commit 3eb4c56

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

guides/mining/run-a-mining-pool.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
description: >-
33
This page will guide you through the process of setting up your very own
4-
mining pool for XKR!
4+
mining pool for XKR! Mining pools are essential for keeping the kryptokrona
5+
network happy and decentralized.
56
---
67

78
# 🏊♂ Run a Mining Pool
@@ -19,12 +20,12 @@ sudo apt-get install -y git curl wget screen build-essential libboost-all-dev cm
1920
sudo reboot
2021
```
2122

22-
### Node 11.x
23+
### Node 12.x
2324

24-
Install Node version 11.x. currently required for cryptonote-nodejs-pool Add repository
25+
Install Node version 12.x. currently required for cryptonote-nodejs-pool Add repository
2526

2627
```
27-
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash
28+
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash
2829
```
2930

3031
Note: you will get warning "Node.js 11.x is no longer actively supported" but there is currently no other version working.
@@ -270,18 +271,17 @@ sudo su - pool
270271
* Download pool software, recommend this version for XKR pool. The newer "cryptonote-nodejs-pool" have problem with unlocker when used for XKR.
271272

272273
```
273-
git clone https://github.com/Swepool/cryptonote-nodejs-pool.git pool
274-
cd pool
274+
git clone https://github.com/kryptokrona/kryptokrona-nodejs-pool.git
275+
cd kryptokrona-nodejs-pool
275276
```
276277

277278
Install Node modules needed
278279

279280
```
280-
npm update
281-
npm audit fix --force
281+
npm i
282282
```
283283

284-
* Set the following in pool config.
284+
* Copy config\_examples/kryptokrona.json to config.json and edit the following:
285285

286286
```
287287
"poolHost": "your hostname or IP address here",
@@ -291,8 +291,8 @@ npm audit fix --force
291291
"coinUnits": 100000,
292292
"coinDecimalPlaces": 5,
293293
"coinDifficultyTarget": 90,
294-
"blockchainExplorer": "https://explorer.kryptokrona.se/?hash={id}#blockchain_block'",
295-
"transactionExplorer": "https://explorer.kryptokrona.se/?hash={id}#blockchain_transaction",
294+
"blockchainExplorer": "https://explorer.kryptokrona.org/?hash={id}#blockchain_block'",
295+
"transactionExplorer": "https://explorer.kryptokrona.org/?hash={id}#blockchain_transaction",
296296
"daemonType": "bytecoin",
297297
"cnAlgorithm": "cryptonight_pico",
298298
"cnVariant": 2,

0 commit comments

Comments
 (0)