diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-29 20:32:31 +0200 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-30 23:46:08 +0200 |
commit | cc429b68fadc502b981fd0acd64a5ff6e2ae1d15 (patch) | |
tree | 3fb23fc4db15dbdd08af4c7ea20134b9d82e58fd /xmrstak/donate-level.hpp | |
parent | e5b0319d5a9f58762fa934ad700113908940cb31 (diff) | |
download | xmr-stak-cc429b68fadc502b981fd0acd64a5ff6e2ae1d15.zip xmr-stak-cc429b68fadc502b981fd0acd64a5ff6e2ae1d15.tar.gz |
group files
- move source code to `src`
- categorize files and move to group folder
- change upper case class files to lower case
- change C++ header to `*.hpp`
Diffstat (limited to 'xmrstak/donate-level.hpp')
-rw-r--r-- | xmrstak/donate-level.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/xmrstak/donate-level.hpp b/xmrstak/donate-level.hpp new file mode 100644 index 0000000..71b7962 --- /dev/null +++ b/xmrstak/donate-level.hpp @@ -0,0 +1,18 @@ +#pragma once + +/* + * Dev donation. + * Percentage of your hashing power that you want to donate to the developer, can be 0.0 if you don't want to do that. + * Example of how it works for the default setting of 2.0: + * You miner will mine into your usual pool for 98 minutes, then switch to the developer's pool for 2.0 minute. + * Switching is instant, and only happens after a successful connection, so you never loose any hashes. + * + * If you plan on changing this setting to 0.0 please consider making a one off donation to our wallets: + * fireice-uk: + * 4581HhZkQHgZrZjKeCfCJxZff9E3xCgHGF25zABZz7oR71TnbbgiS7sK9jveE6Dx6uMs2LwszDuvQJgRZQotdpHt1fTdDhk + * psychocrypt: + * 43NoJVEXo21hGZ6tDG6Z3g4qimiGdJPE6GRxAmiWwm26gwr62Lqo7zRiCJFSBmbkwTGNuuES9ES5TgaVHceuYc4Y75txCTU + * + */ + +constexpr double fDevDonationLevel = 2.0 / 100.0; |