yebocoin (OP)
Newbie
Offline
Activity: 2
Merit: 0
|
|
March 14, 2014, 04:42:58 PM Last edit: March 21, 2014, 11:30:58 PM by yebocoin |
|
yebo
|
|
|
|
Shadow_Runner
|
|
March 14, 2014, 05:14:18 PM |
|
Where is net hashrate in wallet? Someone mining very hard. 880 blocks already Lot orphans.
|
|
|
|
ralexvalex
|
|
March 14, 2014, 05:33:19 PM |
|
Accepted :0 Rejected :2356
LOL
|
|
|
|
zsnorbi
|
|
March 14, 2014, 05:34:42 PM |
|
Accepted :0 Rejected :2356
LOL
Where you get those stats?
|
|
|
|
ralexvalex
|
|
March 14, 2014, 05:35:14 PM |
|
My CG miner
|
|
|
|
zsnorbi
|
|
March 14, 2014, 05:36:14 PM |
|
My CG miner
Cgminer can mine this yebo algo?
|
|
|
|
ralexvalex
|
|
March 14, 2014, 05:39:50 PM |
|
apparently not. how do you mine it guys?
|
|
|
|
coolisbad
|
|
March 14, 2014, 05:42:13 PM |
|
Wallet crashing in win 8 x64
|
|
|
|
zsnorbi
|
|
March 14, 2014, 05:42:52 PM |
|
apparently not. how do you mine it guys?
Setgenerate true but giving only 100 hashes/sec
|
|
|
|
phm
Full Member
Offline
Activity: 378
Merit: 110
DATABLOCKCHAIN.IO SALE IS LIVE | MVP @ DBC.IO
|
|
March 14, 2014, 05:43:27 PM |
|
apparently not. how do you mine it guys?
Tried with the wallet compiled on linux, but hash rate I got was ridiculous, I guess something is wrong with my build.
|
|
|
|
ralexvalex
|
|
March 14, 2014, 05:44:03 PM |
|
Same here, got 117. hmm..
|
|
|
|
ralexvalex
|
|
March 14, 2014, 05:46:50 PM |
|
I'am out on 1200 if nothing found.
|
|
|
|
zsnorbi
|
|
March 14, 2014, 05:47:43 PM |
|
apparently not. how do you mine it guys?
Tried with the wallet compiled on linux, but hash rate I got was ridiculous, I guess something is wrong with my build. Maybe this algo is just that slow like noirshares. I managed to find a block with 100 hashes/sec
|
|
|
|
phm
Full Member
Offline
Activity: 378
Merit: 110
DATABLOCKCHAIN.IO SALE IS LIVE | MVP @ DBC.IO
|
|
March 14, 2014, 05:49:45 PM |
|
for(int i = 192; i < n ; i += 64) { unsigned int j = ((unsigned int)v[i-64] + (((unsigned int)v[i-63])<<8) + (((unsigned int)v[i-62])<<16) + (((unsigned int)v[i-61])<<24)) % (i-128);
for(int l= 0; l < 64; l++) { v[j+l] = (v[j+l] ^ v[i-64+l]); }
if( (v[i-64] & 0xf) == 0 ) { md6_hash( 512, &v[j], 512, &v[i] ); } else if( (v[i-64] & 0xf) == 1 ) { sph_skein512_context ctx_skein; sph_skein512_init(&ctx_skein); sph_skein512(&ctx_skein, static_cast<const void*>(&v[j]), 64); sph_skein512_close(&ctx_skein, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 2 ) { sph_bmw512_context ctx_bmw; sph_bmw512_init(&ctx_bmw); sph_bmw512(&ctx_bmw, static_cast<const void*>(&v[j]), 64); sph_bmw512_close(&ctx_bmw, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 3 ) { sph_shabal512_context ctx_shabal; sph_shabal512_init(&ctx_shabal); sph_shabal512(&ctx_shabal, static_cast<const void*>(&v[j]), 64); sph_shabal512_close(&ctx_shabal, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 4 ) { sph_shavite512_context ctx_shavite; sph_shavite512_init(&ctx_shavite); sph_shavite512(&ctx_shavite, static_cast<const void*>(&v[j]), 64); sph_shavite512_close(&ctx_shavite, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 5 ) { sph_fugue512_context ctx_fugue; sph_fugue512_init(&ctx_fugue); sph_fugue512(&ctx_fugue, static_cast<const void*>(&v[j]), 64); sph_fugue512_close(&ctx_fugue, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 6 ) { sph_hamsi512_context ctx_hamsi; sph_hamsi512_init(&ctx_hamsi); sph_hamsi512(&ctx_hamsi, static_cast<const void*>(&v[j]), 64); sph_hamsi512_close(&ctx_hamsi, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 7 ) { sph_echo512_context ctx_echo; sph_echo512_init(&ctx_echo); sph_echo512(&ctx_echo, static_cast<const void*>(&v[j]), 64); sph_echo512_close(&ctx_echo, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 8 ) { sph_keccak512_context ctx_keccak; sph_keccak512_init(&ctx_keccak); sph_keccak512(&ctx_keccak, static_cast<const void*>(&v[j]), 64); sph_keccak512_close(&ctx_keccak, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 9 ) { sph_jh512_context ctx_jh; sph_jh512_init(&ctx_jh); sph_jh512(&ctx_jh, static_cast<const void*>(&v[j]), 64); sph_jh512_close(&ctx_jh, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 10 ) { sph_simd512_context ctx_simd; sph_simd512_init(&ctx_simd); sph_simd512(&ctx_simd, static_cast<const void*>(&v[j]), 64); sph_simd512_close(&ctx_simd, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 11 ) { sph_cubehash512_context ctx_cubehash; sph_cubehash512_init(&ctx_cubehash); sph_cubehash512(&ctx_cubehash, static_cast<const void*>(&v[j]), 64); sph_cubehash512_close(&ctx_cubehash, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 12 ) { sph_luffa512_context ctx_luffa; sph_luffa512_init(&ctx_luffa); sph_luffa512(&ctx_luffa, static_cast<const void*>(&v[j]), 64); sph_luffa512_close(&ctx_luffa, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 13 ) { sph_groestl512_context ctx_groestl; sph_groestl512_init(&ctx_groestl); sph_groestl512(&ctx_groestl, static_cast<const void*>(&v[j]), 64); sph_groestl512_close(&ctx_groestl, static_cast<void*>(&v[i])); } else if( (v[i-64] & 0xf) == 14 ) { sph_blake512_context ctx_blake; sph_blake512_init(&ctx_blake); sph_blake512(&ctx_blake, static_cast<const void*>(&v[j]), 64); sph_blake512_close(&ctx_blake, static_cast<void*>(&v[i])); } else { blake2b( &v[i], &v[j], 0, 64, 64, 0 ); } }
This is hashing algorithm from hell.
|
|
|
|
yebocoin (OP)
Newbie
Offline
Activity: 2
Merit: 0
|
|
March 14, 2014, 05:54:23 PM |
|
Hash rate is supposed to be low. Wallet crashing in win 8 x64
Did you get an error message?
|
|
|
|
zsnorbi
|
|
March 14, 2014, 06:05:38 PM |
|
Hash rate is supposed to be low. Wallet crashing in win 8 x64
Did you get an error message? Is there a gpu miner for this algo?
|
|
|
|
ralexvalex
|
|
March 14, 2014, 06:08:29 PM |
|
1244, on 3 laptops with about 130 each - zero blocks. I'm out.
|
|
|
|
phm
Full Member
Offline
Activity: 378
Merit: 110
DATABLOCKCHAIN.IO SALE IS LIVE | MVP @ DBC.IO
|
|
March 14, 2014, 06:30:19 PM |
|
I mined 2 blocks so far.
|
|
|
|
Gravity
Member
Offline
Activity: 112
Merit: 10
|
|
March 14, 2014, 06:34:52 PM |
|
Sorry no premine, looks very promising
|
|
|
|
eddywise
Sr. Member
Offline
Activity: 253
Merit: 250
Let's Boolberry
|
|
March 15, 2014, 08:18:16 AM |
|
12:04:05  { "blocks" : 1472, "currentblocksize" : 0, "currentblocktx" : 0, "difficulty" : 0.00097656, "errors" : "", "generate" : false, "genproclimit" : -1, "hashespersec" : 0, "pooledtx" : 0, "testnet" : false }
16:11:40  getmininginfo
16:11:40  { "blocks" : 1477, "currentblocksize" : 0, "currentblocktx" : 0, "difficulty" : 0.00097656, "errors" : "", "generate" : false, "genproclimit" : -1, "hashespersec" : 0, "pooledtx" : 0, "testnet" : false }
Did we had some mistake? Only 5 block be found at last 4 hours!
|
Boolberry : @eddywise DRK: XqTbkj1hpCWBpBSvbWtzBRu5PxzJ2KoA3F BTC: 1FZYvzY4cPLwwZmU8rGPM7xGYjfjiZUmuZ Once desperately want, now desperate to forget
|
|
|
|