tacotime
Legendary
Offline
Activity: 1484
Merit: 1005
|
|
May 08, 2013, 09:11:50 PM |
|
I hooked up an old pc turn it on put yacoin there and start mining instantly i get block found before wallet is synced with 100 yac... WTF
It'll end up as an orphaned block. Current block-reward is less than 50 YAC (reward goes down with # of blocks in the chain, started at 100). No, it goes down with difficulty increases, same as PPC/NVC. It looks like it uses the same reward algo as NVC. int64 GetProofOfWorkReward(unsigned int nBits) { CBigNum bnSubsidyLimit = MAX_MINT_PROOF_OF_WORK; CBigNum bnTarget; bnTarget.SetCompact(nBits); CBigNum bnTargetLimit = bnProofOfWorkLimit; bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
// ppcoin: subsidy is cut in half every 64x multiply of difficulty // A reasonably continuous curve is used to avoid shock to market // (nSubsidyLimit / nSubsidy) ** 6 == bnProofOfWorkLimit / bnTarget // // Human readable form: // // nSubsidy = 100 / (diff ^ 1/6) CBigNum bnLowerBound = CENT; CBigNum bnUpperBound = bnSubsidyLimit; while (bnLowerBound + CENT <= bnUpperBound) { CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2; if (fDebug && GetBoolArg("-printcreation")) printf("GetProofOfWorkReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64()); if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnTarget) bnUpperBound = bnMidValue; else bnLowerBound = bnMidValue; }
int64 nSubsidy = bnUpperBound.getuint64(); nSubsidy = (nSubsidy / CENT) * CENT; if (fDebug && GetBoolArg("-printcreation")) printf("GetProofOfWorkReward() : create=%s nBits=0x%08x nSubsidy=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nBits, nSubsidy);
return min(nSubsidy, MAX_MINT_PROOF_OF_WORK); }
|
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
|
|
|
Kerplunk17
Newbie
Offline
Activity: 40
Merit: 0
|
|
May 08, 2013, 09:13:04 PM |
|
If this is working properly will you be releasing source or compiled binary? pls
|
|
|
|
r2edu
Member
Offline
Activity: 68
Merit: 10
|
|
May 08, 2013, 09:14:21 PM |
|
He´s not getting any "A", something is not working there
|
|
|
|
tacotime
Legendary
Offline
Activity: 1484
Merit: 1005
|
|
May 08, 2013, 09:14:44 PM |
|
Mining on cgminer (no block yet): PS> Ty Taco for suggestions. BTW, if you're getting HW errors it probably means that the hashes aren't being confirmed by the CPU. Double check that you implemented the code in scrypt.c correctly and that you are using a high enough thread concurrency (set your network target to something like diff 4 then try to submit there, they will all come up as rejected by the network but you can verify you wrote the code correctly if they are).
|
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
|
|
|
Hydroponica
Full Member
Offline
Activity: 182
Merit: 100
fml
|
|
May 08, 2013, 09:17:05 PM |
|
Mining on cgminer (no block yet): PS> Ty Taco for suggestions. BTW, if you're getting HW errors it probably means that the hashes aren't being confirmed by the CPU. Double check that you implemented the code in scrypt.c correctly and that you are using a high enough thread concurrency (set your network target to something like diff 4 then try to submit there, they will all come up as rejected by the network but you can verify you wrote the code correctly if they are). Pretty sure he's trying to use a GPU....Not many cpu's can hash like that
|
|
|
|
juve4v
|
|
May 08, 2013, 09:17:20 PM |
|
I got 1 accepted but orphaned and 5 rejects.Too much to work and Im sleepy.I think Ill call it for the night.Maybe someone will figure it out till tomorrow
later edit 7 rejects already
|
|
|
|
hendo420
|
|
May 08, 2013, 09:18:01 PM |
|
Orphan Tears! http://www.youtube.com/watch?v=ma4KlFLho6c{ "account" : "", "category" : "orphan", "amount" : 48.60000000, "confirmations" : 0, "generated" : true, "txid" : "b0012cd056e54a0b2e3453bf80fadedd5b4fd99a05883036c063b2ecf31afc95", "time" : 1368043384, "timereceived" : 1368043385 }, { "account" : "", "category" : "orphan", "amount" : 47.75000000, "confirmations" : 0, "generated" : true, "txid" : "95f3cb7e7b762054b0f7f2c122301d79ed7d3cc91b9f23943125ed7df690ecbd", "time" : 1368044932, "timereceived" : 1368044933 } I like the music video better. http://www.youtube.com/watch?v=929sn1qMCcM
|
ebmarket.co
|
|
|
vinne81
|
|
May 08, 2013, 09:18:34 PM |
|
I got 1 accepted but orphaned and 5 rejects.Too much to work and Im sleepy.I think Ill call it for the night.Maybe someone will figure it out till tomorrow
Then it will be too late, you need to figure it out now, NOOOOWWWWW
|
|
|
|
larkstongues
Member
Offline
Activity: 68
Merit: 10
|
|
May 08, 2013, 09:20:47 PM |
|
BTW, if you're getting HW errors it probably means that the hashes aren't being confirmed by the CPU. Double check that you implemented the code in scrypt.c correctly and that you are using a high enough thread concurrency (set your network target to something like diff 4 then try to submit there, they will all come up as rejected by the network but you can verify you wrote the code correctly if they are).
implying he implemented anything at all
|
pm for tech support
|
|
|
GSnak
|
|
May 08, 2013, 09:23:02 PM |
|
I got 1 accepted but orphaned and 5 rejects.Too much to work and Im sleepy.I think Ill call it for the night.Maybe someone will figure it out till tomorrow
later edit 7 rejects already
This isn't a bright start for the future of YAC GPU mining.
|
|
|
|
Hydroponica
Full Member
Offline
Activity: 182
Merit: 100
fml
|
|
May 08, 2013, 09:24:00 PM |
|
I got 1 accepted but orphaned and 5 rejects.Too much to work and Im sleepy.I think Ill call it for the night.Maybe someone will figure it out till tomorrow
later edit 7 rejects already
This isn't a bright start for the future of YAC GPU mining. Trying to use CGMiner??
|
|
|
|
bitdwarf
Sr. Member
Offline
Activity: 406
Merit: 250
The cryptocoin watcher
|
|
May 08, 2013, 09:29:04 PM |
|
|
𝖄𝖆𝖈: YF3feU4PNLHrjwa1zV63BcCdWVk5z6DAh5 · 𝕭𝖙𝖈: 12F78M4oaNmyGE5C25ZixarG2Nk6UBEqme Ɏ: "the altcoin for the everyman, where the sweat on one's brow can be used to cool one's overheating CPU" -- theprofileth
|
|
|
vinne81
|
|
May 08, 2013, 09:30:21 PM |
|
Up until an hour ago I was getting a lot of orphans. Now I get nothing. I miss my orphans
|
|
|
|
rbdrbd
|
|
May 08, 2013, 09:32:26 PM |
|
Up until an hour ago I was getting a lot of orphans. Now I get nothing. I miss my orphans Still getting blocks here... looks like 7-12 per hour and a half or so on these Xeons?
|
|
|
|
nfuse
Member
Offline
Activity: 97
Merit: 10
|
|
May 08, 2013, 09:34:19 PM |
|
got about 22 blocks now with 4 pc's (600 kh/s) orphans about 160 so i am not complaining strange thing however is that my fastest pc (amd octacore @4,6 ghz found almost no blocks at all (about 3) and my xeons doing a great job. so maybe it's an amd problem? How many connections does each machine have? Does the one not getting blocks also have way less connections than the others? -MarkM- no all have 8 connections (didn't opened the port in my firewall)
|
|
|
|
vinne81
|
|
May 08, 2013, 09:35:08 PM |
|
Up until an hour ago I was getting a lot of orphans. Now I get nothing. I miss my orphans Still getting blocks here... looks like 7-12 per hour and a half or so on these Xeons? Seems like a lot! I don't have a good connections (socks proxy) but that shouldn't stop me from getting orphans. What hash does QT report for your servers? Are you talking about one or mulitple? (7-12 per hour)
|
|
|
|
Kruncha
|
|
May 08, 2013, 09:38:09 PM |
|
I'm have trouble getting any coins, my C64 is churning out a whopping 2hash/s. What could possibly be wrong? Any help upgrading to an Amiga would be appreciated YAC: YCitno2EtBFMzdwKMSqokMuQkiZwH2uUny K.
|
|
|
|
vinne81
|
|
May 08, 2013, 09:39:03 PM |
|
I'm have trouble getting any coins, my C64 is churning out a whopping 2hash/s. What could possibly be wrong? Any help upgrading to an Amiga would be appreciated YAC: YCitno2EtBFMzdwKMSqokMuQkiZwH2uUny K. I sent you 1 YAC so that you don't have to turn on your C64 anymore this year
|
|
|
|
Kruncha
|
|
May 08, 2013, 09:39:57 PM |
|
I'm have trouble getting any coins, my C64 is churning out a whopping 2hash/s. What could possibly be wrong? Any help upgrading to an Amiga would be appreciated YAC: YCitno2EtBFMzdwKMSqokMuQkiZwH2uUny K. I sent you 1 YAC so that you don't have to turn on your C64 anymore this year Thank you greatly, I can now afford the game I was wanting (Manic Miner). K.
|
|
|
|
seleme
Legendary
Offline
Activity: 2772
Merit: 1028
Duelbits.com
|
|
May 08, 2013, 09:40:30 PM |
|
YaCoin successfully removed from my computer
|
|
|
|
|