goodluck0319
|
|
March 24, 2014, 12:34:11 AM |
|
do u guys know how many coin I get w/ i7 4770k cpu?
|
|
|
|
Atrides
|
|
March 24, 2014, 12:52:49 AM |
|
the same! 7970
sgminer -I 25 -g 4 -w 64 -k fuguecoin --no-submit-stale -o "stratum+tcp://erebor.dwarfpool.com:3340"
100% rejects
100% rejects means only that you use wrong sgminer version! You have to use patched version, see on pool page the links.
|
|
|
|
agran
|
|
March 24, 2014, 01:05:25 AM |
|
|
|
|
|
fudge
|
|
March 24, 2014, 05:11:18 AM |
|
the same! 7970
sgminer -I 25 -g 4 -w 64 -k fuguecoin --no-submit-stale -o "stratum+tcp://erebor.dwarfpool.com:3340"
100% rejects
100% rejects means only that you use wrong sgminer version! You have to use patched version, see on pool page the links. yeah... this one is working https://github.com/badman74/Binaries/raw/master/sgminer/sgminer.exe<press Raw>
|
Haшa гpyшa нaйpoзкopчyмaкyвaтiшa!
|
|
|
uswapme
Member
Offline
Activity: 84
Merit: 10
|
|
March 24, 2014, 05:28:45 AM |
|
coin is dying slowly? any good news about something?
|
|
|
|
tabnk
|
|
March 24, 2014, 06:05:22 AM |
|
It just warm up only .....
|
|
|
|
reznor
Newbie
Offline
Activity: 46
Merit: 0
|
|
March 24, 2014, 06:37:44 AM |
|
im using the sgminer over at dwarfpool but im getting this error. Maybe an error at amd sdk. trying to use my friend unused 4870, quite old card but still working just fine.
Here is the error at line 39 of the fugue kernel
[14:30:58] Kernel fuguecoin is experimental. [14:30:58] Building binary fuguecoinATI RV770glg2tc4032nf10w64l4.bin [14:30:58] Error -11: Building Program (clBuildProgram) [14:30:58] "./kernel/fugue.cl", line 33: error: storage-class specifiers extern/static/register not allowed for variables __constant static const sph_u32 IV224[] = { ^
"./kernel/fugue.cl", line 39: error: storage-class specifiers
[14:30:58] Failed to init GPU thread 0, disabling device 0 [14:30:58] Restarting the GPU from the menu will not fix this. [14:30:58] Re-check your configuration and try restarting. Press enter to continue:
maybe someone encounter this kind of error.
|
|
|
|
EtBIM
Member
Offline
Activity: 83
Merit: 10
|
|
March 24, 2014, 07:24:10 AM |
|
Hey that's pretty cool but you don't see mined coins in the wallet, only received ?
|
BTC: 1PoM7Us1VwPAfULsyTcwjqAeZMjRwiokB4
|
|
|
sokol
Member
Offline
Activity: 62
Merit: 10
|
|
March 24, 2014, 07:40:31 AM |
|
3 day tormented, I can not seem to turn mining FC. If who do not mind, send me a some FC, please FLMjQbp5TZm5FGx5YiMYR4ZpUXSATKJQCK
|
|
|
|
agran
|
|
March 24, 2014, 08:04:09 AM |
|
Hey that's pretty cool but you don't see mined coins in the wallet, only received ?
For each new block creates a new address. If you want to see yourself in that list, then send all the coins at one address.
|
|
|
|
EtBIM
Member
Offline
Activity: 83
Merit: 10
|
|
March 24, 2014, 08:21:19 AM |
|
Ah yes right, thanks.
|
BTC: 1PoM7Us1VwPAfULsyTcwjqAeZMjRwiokB4
|
|
|
hashnine
|
|
March 24, 2014, 01:35:34 PM |
|
im using the sgminer over at dwarfpool but im getting this error. Maybe an error at amd sdk. trying to use my friend unused 4870, quite old card but still working just fine.
Here is the error at line 39 of the fugue kernel
[14:30:58] Kernel fuguecoin is experimental. [14:30:58] Building binary fuguecoinATI RV770glg2tc4032nf10w64l4.bin [14:30:58] Error -11: Building Program (clBuildProgram) [14:30:58] "./kernel/fugue.cl", line 33: error: storage-class specifiers extern/static/register not allowed for variables __constant static const sph_u32 IV224[] = { ^
"./kernel/fugue.cl", line 39: error: storage-class specifiers
[14:30:58] Failed to init GPU thread 0, disabling device 0 [14:30:58] Restarting the GPU from the menu will not fix this. [14:30:58] Re-check your configuration and try restarting. Press enter to continue:
maybe someone encounter this kind of error.
Upgrade your Catalyst driver maybe.
|
Careful XC anonymous coin is a scam
|
|
|
coinano
Full Member
Offline
Activity: 196
Merit: 100
Coinano.com Digital Currency Exchange Platform
|
|
March 24, 2014, 09:03:19 PM |
|
|
|
|
|
Sanasol
Member
Offline
Activity: 98
Merit: 10
|
|
March 24, 2014, 10:20:08 PM |
|
template<typename T1, typename T2> inline uint256 Hash4(const T1 p1begin, const T1 p1end, const T2 p2begin, const T2 p2end) { static unsigned char pblank[1]; uint256 hash1; SHA256_CTX ctx; SHA256_Init(&ctx); SHA256_Update(&ctx, (p1begin == p1end ? pblank : (unsigned char*)&p1begin[0]), (p1end - p1begin) * sizeof(p1begin[0])); SHA256_Update(&ctx, (p2begin == p2end ? pblank : (unsigned char*)&p2begin[0]), (p2end - p2begin) * sizeof(p2begin[0])); SHA256_Final((unsigned char*)&hash1, &ctx); uint256 hash2; SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2); return hash2; } cant do it in python, maybe someone can help?) anycoin code template<typename T1> inline uint256 Hash(const T1 pbegin, const T1 pend) { static unsigned char pblank[1]; uint256 hash1; SHA256((pbegin == pend ? pblank : (unsigned char*)&pbegin[0]), (pend - pbegin) * sizeof(pbegin[0]), (unsigned char*)&hash1); uint256 hash2; SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2); return hash2; }
Python same code: def double_sha256(s): return SHA256.new(SHA256.new(s).digest()).digest()
# Based on CBlock::BuildMerkleTree(). def merkle(hashes): while len(hashes) > 1: size = len(hashes) out = [] for i in xrange(0, size, 2): i2 = min(i + 1, size - 1) out.append(double_sha256(hashes[i] + hashes[i2])) hashes = out return hashes and hashes[0]
|
|
|
|
Sanasol
Member
Offline
Activity: 98
Merit: 10
|
|
March 24, 2014, 11:25:08 PM |
|
|
|
|
|
hashnine
|
|
March 24, 2014, 11:33:41 PM |
|
Nice. I hope it will help for the futur.
|
Careful XC anonymous coin is a scam
|
|
|
Chris84
Newbie
Offline
Activity: 69
Merit: 0
|
|
March 25, 2014, 12:28:38 AM |
|
Nice! Thanks a lot, I hope we are able to get enought votes to trade on your exchange
|
|
|
|
agran
|
|
March 25, 2014, 05:22:30 AM Last edit: March 25, 2014, 09:13:59 AM by agran |
|
1) Our coin is very necessary Block Explorer. I now pronounce the bounty for fist Block Explorer. (Must be able to find the balance of addresses.)
Please send your donation to this address! F6BrXLy16TmJqrdxDyUS9YfzZs3eFicwiF All coins that we accumulate - I will send to the author of service.
Already donated: agran - 50 FC anon - 10 FC azhago - 25 FC dstorm - 50 FC skwinx - 500 FC Foss - 65 FC
Total: 700 FC
|
|
|
|
Foss
|
|
March 25, 2014, 07:39:44 AM |
|
send 65 FC
|
BTC: 147kwy3LndX6jkwGC3mU9j6rZMWU8g1Amd DASH: XhR4V6ChnQp7LDWhpArwBMXARxU5LGiq8a ETH: 0xe4b10dff72b58a363a3c8b70e21cfb236e2697c9
|
|
|
|
|