Bitcoin Forum
May 24, 2024, 01:58:50 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: yebo  (Read 983 times)
yebocoin (OP)
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
March 14, 2014, 04:42:58 PM
Last edit: March 21, 2014, 11:30:58 PM by yebocoin
 #1

yebo
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
March 14, 2014, 05:14:18 PM
 #2

Where is net hashrate in wallet? Someone mining very hard. 880 blocks already
Lot orphans.
ralexvalex
Sr. Member
****
Offline Offline

Activity: 256
Merit: 250


View Profile
March 14, 2014, 05:33:19 PM
 #3

Accepted :0
Rejected :2356

LOL
zsnorbi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
March 14, 2014, 05:34:42 PM
 #4

Accepted :0
Rejected :2356

LOL

Where you get those stats?
ralexvalex
Sr. Member
****
Offline Offline

Activity: 256
Merit: 250


View Profile
March 14, 2014, 05:35:14 PM
 #5

My CG miner
zsnorbi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
March 14, 2014, 05:36:14 PM
 #6

My CG miner

Cgminer can mine this yebo algo?
ralexvalex
Sr. Member
****
Offline Offline

Activity: 256
Merit: 250


View Profile
March 14, 2014, 05:39:50 PM
 #7

apparently not. how do you mine it guys?
coolisbad
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
March 14, 2014, 05:42:13 PM
 #8

Wallet crashing in win 8 x64
zsnorbi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
March 14, 2014, 05:42:52 PM
 #9

apparently not. how do you mine it guys?


Setgenerate true but giving only 100 hashes/sec
phm
Full Member
***
Offline Offline

Activity: 378
Merit: 110


DATABLOCKCHAIN.IO SALE IS LIVE | MVP @ DBC.IO


View Profile
March 14, 2014, 05:43:27 PM
 #10

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
Sr. Member
****
Offline Offline

Activity: 256
Merit: 250


View Profile
March 14, 2014, 05:44:03 PM
 #11

Same here, got 117. hmm..
ralexvalex
Sr. Member
****
Offline Offline

Activity: 256
Merit: 250


View Profile
March 14, 2014, 05:46:50 PM
 #12

I'am out on 1200 if nothing found.
zsnorbi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
March 14, 2014, 05:47:43 PM
 #13

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 Offline

Activity: 378
Merit: 110


DATABLOCKCHAIN.IO SALE IS LIVE | MVP @ DBC.IO


View Profile
March 14, 2014, 05:49:45 PM
 #14

Code:
    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 Offline

Activity: 2
Merit: 0


View Profile
March 14, 2014, 05:54:23 PM
 #15

Hash rate is supposed to be low.
Wallet crashing in win 8 x64
Did you get an error message?
zsnorbi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
March 14, 2014, 06:05:38 PM
 #16

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
Sr. Member
****
Offline Offline

Activity: 256
Merit: 250


View Profile
March 14, 2014, 06:08:29 PM
 #17

1244, on 3 laptops with about 130 each - zero blocks. I'm out.
phm
Full Member
***
Offline Offline

Activity: 378
Merit: 110


DATABLOCKCHAIN.IO SALE IS LIVE | MVP @ DBC.IO


View Profile
March 14, 2014, 06:30:19 PM
 #18

I mined 2 blocks so far.

Gravity
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 14, 2014, 06:34:52 PM
 #19

Sorry no premine, looks very promising Wink

eddywise
Sr. Member
****
Offline Offline

Activity: 253
Merit: 250

Let's Boolberry


View Profile
March 15, 2014, 08:18:16 AM
 #20

Quote
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
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!