-
Notifications
You must be signed in to change notification settings - Fork 3
/
donate.h
31 lines (27 loc) · 888 Bytes
/
donate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef DONATE_H
#define DONATE_H
/*
* Minimum dev donation.
* Minimum percentage of your hashing power that you want to donate to the
* developer, can be 0 if you prefer not to.
* You can set the donation percentage higher by using the --donate flag.
*
* Example of how it works for the default setting of 1:
* You miner will mine into your usual pool for 99 minutes, then switch to the
* developer's pool for 1 minute.
*
* If you plan on changing this setting to 0 please consider making a one-time
* donation to the developers' wallets:
*
* tpruvot (ccminer)
* BTC donation address: 1AJdfCpLWPNoAMDfHF1wD5y8VgKSSTHxPo
*
* brianmct (x16r optimizations)
* BTC donation address: 1FHLroBZaB74QvQW5mBmAxCNVJNXa14mH5
* RVN donation address: RWoSZX6j6WU6SVTVq5hKmdgPmmrYE9be5R
*
*/
#define MIN_DEV_DONATE_PERCENT 0
// 100 minutes
#define DONATE_CYCLE_TIME 6000
#endif