Bitcoin Forum
June 20, 2024, 03:38:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 ... 130 »
  Print  
Author Topic: [ANN][CACH] CACHeCoin released based on scrypt-jane  (Read 224371 times)
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 06:39:25 AM
 #141

my wallet keeps telling me out of synch
That is because one huge miner dropped out. you are actually in sync if the progress bar at the bottom disappears. The message will disapear after next block is mined






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 07:41:08 AM
 #142

ybcminer wont connect to the pool and are there new windows cpu binaries with scrypt-jane?

BOUNTY DETECTIVE


















Powered by,
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 07:46:49 AM
 #143

ybcminer wont connect to the pool and are there new windows cpu binaries with scrypt-jane?
I'm afraid no cpu binaries for windows. you can compile one from my github repo. for gpu, people are reporting applecoin gpu miner working with the params
Code:
--scrypt --Nfmin 4 --Nfmax 30 --StartT 1388949883






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 07:55:56 AM
 #144

I've read in this thread that ybcminer should work too
https://bitcointalk.org/index.php?topic=249360.0
but it got no --Nfmin flags and won't connect to the pool

My rig is linux so i need sources, applecoin is windows binary only as far as i can tell

Code:
./ybcminer -o stratum+tcp://cach.catcoin.cz:3333 -u Sykh.temp -p x --scrypt

BOUNTY DETECTIVE


















Powered by,
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 08:14:58 AM
 #145

I've read in this thread that ybcminer should work too
https://bitcointalk.org/index.php?topic=249360.0
but it got no --Nfmin flags and won't connect to the pool

My rig is linux so i need sources, applecoin is windows binary only as far as i can tell

Code:
./ybcminer -o stratum+tcp://cach.catcoin.cz:3333 -u Sykh.temp -p x --scrypt

If your're on linux, get yacminer https://bitcointalk.org/index.php?topic=247782.0 and replace 1367991200 with 1388949883, compile and that should mine without a problem






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 08:17:30 AM
 #146

Will do, the pool still doesn't accept any connection though, tried with 3 miners now.

Quote
and replace 1367991200 with 1388949883, compile and that should mine without a problem

Replace that where?

Code:
grep '1367991200' *
driver-opencl.c:    if (nTimestamp <= 1367991200)
driver-opencl.c:    unsigned long int s = nTimestamp - 1367991200;
scrypt.c:    if (nTimestamp <= 1367991200)
scrypt.c:    unsigned long int s = nTimestamp - 1367991200;

BOUNTY DETECTIVE


















Powered by,
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 08:36:41 AM
 #147

Will do, the pool still doesn't accept any connection though, tried with 3 miners now.

Quote
and replace 1367991200 with 1388949883, compile and that should mine without a problem

Replace that where?

Code:
grep '1367991200' *
driver-opencl.c:    if (nTimestamp <= 1367991200)
driver-opencl.c:    unsigned long int s = nTimestamp - 1367991200;
scrypt.c:    if (nTimestamp <= 1367991200)
scrypt.c:    unsigned long int s = nTimestamp - 1367991200;

should be
Code:
driver-opencl.c:    if (nTimestamp <= 1388949883)
driver-opencl.c:    unsigned long int s = nTimestamp - 1388949883;
scrypt.c:    if (nTimestamp <= 1388949883)
scrypt.c:    unsigned long int s = nTimestamp - 1388949883;






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 08:39:01 AM
 #148

Okay i've changed that - but yacminer shows odd numbers Cheesy

Quote
GPU 0:  77.0C 3788RPM | 4.487M/4.508Mh/s | A:0 R:0 HW:0 U:0.00/m I:17
 GPU 1:  71.0C 3247RPM | 4.490M/4.510Mh/s | A:0 R:0 HW:0 U:0.00/m I:17

mining solo right now since i cant connect to the pool you are obviously mining at...odd

BOUNTY DETECTIVE


















Powered by,
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 08:48:38 AM
 #149

does it give any errors? or just hang?






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 08:59:02 AM
 #150

The usual stuff...
Quote
./minerd --algo=scrypt-jane -o cach.catcoin.cz:3333 -u Sykh.xeon -p x
[2014-01-10 09:53:59] HTTP request failed: Empty reply from server
[2014-01-10 09:53:59] json_rpc_call failed, retry after 30 seconds

Quote
./yacminer -o cach.catcoin.cz:3333 -u Sykh.temp -p x --scrypt
 [2014-01-10 08:53:13] Probing for an alive pool
 [2014-01-10 08:54:13] No servers were found that could be used to get work from.
 [2014-01-10 08:54:13] Please check the details from the list below of the servers you have input
 [2014-01-10 08:54:13] Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers
 [2014-01-10 08:54:13] Pool: 0  URL: http://cach.catcoin.cz:3333  User: Sykh.temp  Password: x
 [2014-01-10 08:54:13] Press any key to exit, or cgminer will try again in 15s.

BOUNTY DETECTIVE


















Powered by,
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 09:02:26 AM
 #151

The usual stuff...
Quote
./minerd --algo=scrypt-jane -o cach.catcoin.cz:3333 -u Sykh.xeon -p x
[2014-01-10 09:53:59] HTTP request failed: Empty reply from server
[2014-01-10 09:53:59] json_rpc_call failed, retry after 30 seconds

Quote
./yacminer -o cach.catcoin.cz:3333 -u Sykh.temp -p x --scrypt
 [2014-01-10 08:53:13] Probing for an alive pool
 [2014-01-10 08:54:13] No servers were found that could be used to get work from.
 [2014-01-10 08:54:13] Please check the details from the list below of the servers you have input
 [2014-01-10 08:54:13] Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers
 [2014-01-10 08:54:13] Pool: 0  URL: http://cach.catcoin.cz:3333  User: Sykh.temp  Password: x
 [2014-01-10 08:54:13] Press any key to exit, or cgminer will try again in 15s.

hmmm..... my cpuminer connected and submitted a share
Code:
kalgecin@kalgecin-U38DT:~/cpuminer-cach$ ./minerd -o stratum+tcp://cach.catcoin.cz:3333 -u Sykh.temp -p x -a scrypt-jane -q
[2014-01-10 13:01:08] Starting Stratum on stratum+tcp://cach.catcoin.cz:3333
[2014-01-10 13:01:08] 4 miner threads started, using 'scrypt-jane' algorithm.
[2014-01-10 13:01:09] Stratum detected new block
[2014-01-10 13:01:36] accepted: 1/1 (100.00%), 61.12 khash/s (yay!!!)
^C






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 09:09:52 AM
 #152

Now that's really odd, i can load the site so the IP is not blocked and i've mined on 3333 before hmm *checking logs* ahahaha fuck, the firewall manufacturer updated the block list and is blocking stratum now - can the poolup make it listen on another port pls? Cheesy

BOUNTY DETECTIVE


















Powered by,
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 09:17:08 AM
 #153

Now that's really odd, i can load the site so the IP is not blocked and i've mined on 3333 before hmm *checking logs* ahahaha fuck, the firewall manufacturer updated the block list and is blocking stratum now - can the poolup make it listen on another port pls? Cheesy
Can't you open the port?






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 09:47:04 AM
 #154

Working on it, it's not that simple since its part of the automated anti-botnet rule Cheesy

BOUNTY DETECTIVE


















Powered by,
Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 09:58:13 AM
 #155

Got it running, as you might have noticed Cheesy

Odd thing tough, ybc is working, your minerd doesn't connect xD but i guess that doesn't really matter, thanks alot for the support.

BOUNTY DETECTIVE


















Powered by,
jasinlee
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


Its as easy as 0, 1, 1, 2, 3


View Profile
January 10, 2014, 04:12:26 PM
 #156

Gotta keep on mining before it hits the exchanges.

BTC 1JASiNZxmAN1WBS4dmGEDoPpzN3GV7dnjX DVC 1CxxZzqcy7YEVXfCn5KvgRxjeWvPpniK3                     Earn Devcoins Devtome.com
kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 05:16:39 PM
 #157

Gotta keep on mining before it hits the exchanges.

Hehe :-) yeah, It'll take time for people to realize that though :-)






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






kalgecin (OP)
Hero Member
*****
Offline Offline

Activity: 819
Merit: 1000


View Profile
January 10, 2014, 05:17:52 PM
 #158

Got it running, as you might have noticed Cheesy

Odd thing tough, ybc is working, your minerd doesn't connect xD but i guess that doesn't really matter, thanks alot for the support.
[/quote

Which is that? the one on github?






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






jasinlee
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


Its as easy as 0, 1, 1, 2, 3


View Profile
January 10, 2014, 05:35:46 PM
 #159

Gimme the cache!

BTC 1JASiNZxmAN1WBS4dmGEDoPpzN3GV7dnjX DVC 1CxxZzqcy7YEVXfCn5KvgRxjeWvPpniK3                     Earn Devcoins Devtome.com
Sy
Legendary
*
Offline Offline

Activity: 1484
Merit: 1003


Bounty Detective


View Profile
January 10, 2014, 05:39:24 PM
 #160

Got it running, as you might have noticed Cheesy

Odd thing tough, ybc is working, your minerd doesn't connect xD but i guess that doesn't really matter, thanks alot for the support.

Which is that? the one on github?

Yeah did the changes in yacminer and compiled it, the hashrate in yacminer is bullshit, showing 5 mhs per 7950 but the pool accepts the shares, switched to solo mining, sorry  Grin

BOUNTY DETECTIVE


















Powered by,
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 ... 130 »
  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!