bones261
Legendary
Offline
Activity: 1806
Merit: 1828
|
|
September 21, 2015, 04:32:39 AM |
|
|
|
|
|
logocreator
Legendary
Offline
Activity: 1134
Merit: 1000
www.cryptodesign.cc
|
|
September 21, 2015, 07:04:51 AM |
|
Logos Happy mining to all, i already started.
|
|
|
|
TimSweat
Sr. Member
Offline
Activity: 392
Merit: 250
TimSweat
|
|
September 21, 2015, 07:34:28 AM |
|
Nice logos .
|
|
|
|
wildduck
Legendary
Offline
Activity: 966
Merit: 1001
|
|
September 21, 2015, 08:41:06 AM |
|
Yes nice logos, but the primine is too much
|
|
|
|
HorsePowerCoin (OP)
Newbie
Offline
Activity: 14
Merit: 0
|
|
September 21, 2015, 09:35:33 AM |
|
Yes nice logos, but the primine is too much
Premine will be distributed trough bounties, thats how we want people to to be involved in further developing of the coin. If anyone is capable to do something positive about HSP, please pm me for making a deal.
|
|
|
|
wildduck
Legendary
Offline
Activity: 966
Merit: 1001
|
|
September 21, 2015, 09:47:38 AM |
|
Yes nice logos, but the primine is too much
Premine will be distributed trough bounties, thats how we want people to to be involved in further developing of the coin. If anyone is capable to do something positive about HSP, please pm me for making a deal. Ok that is ok but we will see
|
|
|
|
raetsch
Legendary
Offline
Activity: 957
Merit: 1006
|
|
September 21, 2015, 10:06:52 AM |
|
you did not read the rest of the thread, did you?
|
|
|
|
smarterhash
|
|
September 21, 2015, 10:42:43 AM |
|
block reward is very important going into the future but what is even more important is the amount of network hash going after those rewards - only time will tell if the block reward is significant or not.
|
|
|
|
HorsePowerCoin (OP)
Newbie
Offline
Activity: 14
Merit: 0
|
|
September 21, 2015, 02:03:20 PM |
|
block reward is very important going into the future but what is even more important is the amount of network hash going after those rewards - only time will tell if the block reward is significant or not.
Totally true. But about the max supply, I must admit gjhiggins and notsofast had me doubting for a while, so I checked with other devs just to make sure and you know what ? The max money is well... the max money. static const int64 MAX_MONEY = 2900000 * COIN;
MAX_MONEY limits the total number of coins allowed in a single transaction/fee NOT the total number of coins. @Graham : Wrong. You're just full of fud!
|
|
|
|
raetsch
Legendary
Offline
Activity: 957
Merit: 1006
|
|
September 21, 2015, 02:21:12 PM |
|
where is the check in code if max coin is already hit? because pow must stop at this point or give zero reward. the only thing with max_money i can find in code has nothing to do with pow. if (txout.nValue > MAX_MONEY) return state.DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"))
|
|
|
|
psycodad
Legendary
Offline
Activity: 1649
Merit: 1813
精神分析的爸
|
|
September 21, 2015, 02:37:53 PM |
|
block reward is very important going into the future but what is even more important is the amount of network hash going after those rewards - only time will tell if the block reward is significant or not.
Totally true. But about the max supply, I must admit gjhiggins and notsofast had me doubting for a while, so I checked with other devs just to make sure and you know what ? The max money is well... the max money. static const int64 MAX_MONEY = 2900000 * COIN;
MAX_MONEY limits the total number of coins allowed in a single transaction/fee NOT the total number of coins. @Graham : Wrong. You're just full of fud! Strong words, I am sure you are sure you have the facts to base that accusation. Would you eventually enlighten me as where in your sources MAX_MONEY limits the total supply? Oh, and maybe you could use a dev-tool called google and end up with a link like that: https://github.com/bitcoin/bitcoin/pull/6197/filesOr you could consult this very same forum and find https://bitcointalk.org/index.php?topic=331069.0*tsktsk* @Graham: thank you for your repeated insights and helpful posts, I learn a lot from them!
|
|
|
|
gjhiggins
Legendary
Offline
Activity: 2254
Merit: 1290
|
|
September 21, 2015, 02:55:32 PM |
|
But about the max supply, I must admit gjhiggins and notsofast had me doubting for a while, so I checked with other devs just to make sure and you know what ? The max money is well... the max money.
@Graham : Wrong. You're just full of fud!
Uh-huh, you checked with “other devs”. And then decided that an insulting tone would be appropriate. Not the best of calls. Can I recommend that you develop a little more maturity and extend your skillset, then you will more readily avoid making a public spectacle of yourself. In case your ill-founded and incorrect claim confuses others, I'll make it clear ... Try inspecting the source code - as a self-styled “dev”, you should at least be capable of reading C++ for meaning ... I recursively grepped the code for case-sensitive instances of the character string MAX_MONEY. Results showed two (2) header declarations and three (3) instances of use in the main codebase ... $ grep -r -n MAX_MONEY horsepowercoin horsepowercoin/src/main.h:55:static const int64 MAX_MONEY = 2900000 * COIN; horsepowercoin/src/main.h:56:inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } horsepowercoin/src/main.cpp:573: if (txout.nValue > MAX_MONEY) horsepowercoin/src/main.cpp:636: return MAX_MONEY; horsepowercoin/src/main.cpp:641: nMinFee = MAX_MONEY; horsepowercoin/src/test/data/tx_valid.json:54:["MAX_MONEY output"], horsepowercoin/src/test/data/tx_valid.json:58:["MAX_MONEY output + 0 output"], horsepowercoin/src/test/data/tx_invalid.json:39:["MAX_MONEY + 1 output"], horsepowercoin/src/test/data/tx_invalid.json:43:["MAX_MONEY output + 1 output"],
I've edited the results into URLs so that you (and everyone else) can easily verify that MAX _MONEY is only used to limit the amount of coins in any single transaction/fee https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.cpp#L573: if (txout.nValue > MAX_MONEY) https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.cpp#L636: return MAX_MONEY; https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.cpp#L641: nMinFee = MAX_MONEY; These “other devs” of whom you write --- are they perhaps school classmates of yours? The reason I ask is, like yourself, they also appear to be refreshingly uncontaminated by knowledge. Cheers Graham
|
|
|
|
gjhiggins
Legendary
Offline
Activity: 2254
Merit: 1290
|
|
September 21, 2015, 03:06:52 PM |
|
@Graham: thank you for your repeated insights and helpful posts, I learn a lot from them!
Thanks for the kind words. Your post is spot on as answer. I'd have left it to do its job had the OP not directly invited me to clarify the issue, an invitation which it would have been churlish of me to decline. Cheers Graham
|
|
|
|
logocreator
Legendary
Offline
Activity: 1134
Merit: 1000
www.cryptodesign.cc
|
|
September 21, 2015, 03:13:48 PM |
|
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
September 21, 2015, 03:15:14 PM |
|
@LogoCreator: it means exactly what gjhiggins already wrote and documented very well (thanks gjhiggins for that!) No one seemed to have noticed it so far:
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
logocreator
Legendary
Offline
Activity: 1134
Merit: 1000
www.cryptodesign.cc
|
|
September 21, 2015, 03:20:50 PM |
|
No, no matter that it is the same dev, everyone is used to it, what do you want, every coin to have newborn developer? I mean, is there a cruicial problem with the HorsePowerCoin specs or blockchain?
|
|
|
|
buchaski
Member
Offline
Activity: 78
Merit: 10
|
|
September 21, 2015, 03:29:02 PM |
|
so what is the actual max supply of this coin?
|
|
|
|
HorsePowerCoin (OP)
Newbie
Offline
Activity: 14
Merit: 0
|
|
September 21, 2015, 03:51:33 PM Last edit: September 21, 2015, 04:25:22 PM by HorsePowerCoin |
|
@Graham, @notsofast. I now know that I am wrong and you where right. Sorry about the fud remark and thanks for providing the proof. Now everyone, please don't be mad and still have fun mining. so what is the actual max supply of this coin?
This coin will has no max supply and pow will go on forever!
|
|
|
|
buchaski
Member
Offline
Activity: 78
Merit: 10
|
|
September 21, 2015, 03:53:41 PM |
|
@Graham, @notsofast. I now know that I am wrong and you where right. Sorry about the fud remark and thanks for providing thanks proof. Now everyone, please don't be mad and still have fun mining. so what is the actual max supply of this coin?
This coin will has no max supply and pow will go on forever! so what will the rough supply be in a weeks time?
|
|
|
|
HorsePowerCoin (OP)
Newbie
Offline
Activity: 14
Merit: 0
|
|
September 21, 2015, 04:24:36 PM |
|
Rough estimate is 1000 blocks/24h.
So 7000 blocks per week, that would be 3300000 coins by next monday. Give or take a few hundred thousands.
|
|
|
|
|