Bitcoin Forum
June 25, 2024, 03:39:58 AM *
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 »  All
  Print  
Author Topic: JKC - The Scrypt Coin with Super Blocks  (Read 33144 times)
live627
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


View Profile
May 24, 2013, 11:25:12 PM
 #341

I cannot empty my wallet.

---------------------------
Send Coins
---------------------------
Error: Transaction creation failed.
--------------------------
dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 24, 2013, 11:47:13 PM
 #342

I cannot empty my wallet.

---------------------------
Send Coins
---------------------------
Error: Transaction creation failed.
--------------------------

Try sending small chunks. When sending a large amount with many small inputs (such as the 50 JKC coinbase) the transaction gets too large. If the majority of your inputs are 50 JKC try sending 20k chunks .

dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 24, 2013, 11:48:29 PM
 #343

In regard to JKC.CRYPTOCOINMINE.COM:


Some of the recent miners may have to enter their payout addresses again, as some tweaking was needed to the account database.
Also, everybodys' payout threshold has been reset to 1.00. Please change if needed.

live627
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


View Profile
May 24, 2013, 11:53:25 PM
 #344

I cannot empty my wallet.

---------------------------
Send Coins
---------------------------
Error: Transaction creation failed.
--------------------------

Try sending small chunks. When sending a large amount with many small inputs (such as the 50 JKC coinbase) the transaction gets too large. If the majority of your inputs are 50 JKC try sending 20k chunks .
Yep, so I had to spam the blockchain to death with dozens of micro payments.
EnJoyThis
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1000


View Profile
May 25, 2013, 06:09:47 PM
 #345

Could one tell me how I can solomine for Junkcoins?

You can also pm me with the info if you don't want to put it here in this toppic.

Thanks
cheers to junkcoin :-)

1Ew9k5guAGb44Uz6rYfSVscgFBUcgDZp5C
dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 25, 2013, 06:30:15 PM
 #346

Could one tell me how I can solomine for Junkcoins?

You can also pm me with the info if you don't want to put it here in this toppic.

Thanks
cheers to junkcoin :-)

You solo mine JKC like any scrypt coin (Except YAC).

RPC port is 9772

Run the coin daemon in server mode (server=1 in your junkcoin.conf or use the --daemon switch if using the command line version)

Make sure to use (rpcallowip=<your local network using * for your hosts> -  Typically rpcallowip=192.168.1.*) if you are mining on computers other then where the daemon is running.

 

I wrote a tutorial awhile back on how to setup a private Pushpool for FTC, that works the same with all the scrypt coins (again except for YAC).

 
Here are some instructions for creating one’s own private pushpool for any of the scrypt coins (the examples will be for JKC)
Pushpool and pool software in general, is really designed around Linux and as such the instructions are for Linux,

1.   Download  (Git clone) Art Forz branch of Pushpool.
 https://github.com/ArtForz/pushpool

2.   Run the “autogen.sh” and then run “./configure”. Take note of the dependencies it finds missing and install those dependencies. Continue to run configure until all Dependencies are met.

From the ReadME:

Code:
Dependencies:
libmysql++-dev
libevent
libmemcached
pthreads
zlib
jansson
OpenSSL's libcrypto
libcurl
(The postgressql   C libraries, I do not remember the name off  hand)

3.   Run the make command. The pushpoold executable should now be available.

4.   Set up a database. You can download a SQL template from:
 https://github.com/simplecoin/simplecoin/tree/master/sql
Using mysql :
Code:
 
mysql -u root -p
<enter password at prompt>
create database pool (or whatever you want to name it);
When successful , quit mysql
To import the database : mysql -u root -p  pool < simplecoin-v5.sql
Enter password again and if you receive no error you should be ok.
Restart mysql prompt (mysql  -u root –p)
Use pool;  (or whatever you named the database)
INSERT INTO pool_worker (username ,password)  VALUES(<”any username you want”>,<”whatever password you want”>);
Note your username and password in the values section needs to be in quotes.

Example: INSERT INTO pool_worker (username ,password)  VALUES("iamuser", ”iampassword”);

 For more  information on using the mysql command line visit: http://www.pantz.org/software/mysql/mysqlcommands.html
You should get an ok, then exit mysql

Create your server.json file:
Example:
Code:
{
# network ports
"listen" : [
# binary protocol (default), port 8336
{ "port" : 8336 },

# HTTP JSON-RPC protocol, port 8337
{ "port" : 8337, "protocol" : "http-json" },

# HTTP JSON-RPC protocol, port 8339,
# with trusted proxy appserver.example.com forwarding
# requests to us
{ "port" : 8339, "protocol" : "http-json",
  "proxy" : "xxx.xxx.xxx.xxx" },

# binary protocol, localhost-only port 8338
{ "host" : "127.0.0.1", "port" : 8338, "protocol" : "binary" }
],

# database settings
"database" : {
"engine" : "mysql",

# 'host' defaults to localhost, if not specified
#"host" : "mysql.example.com",

# 'port' uses proper default port for the DB engine,
# if not specified
#"port" : 12121,

"name" : "pool",
"username" : "root",
"password" : “<Mysql database password>",

"stmt.pwdb" :
  "SELECT password FROM pool_worker WHERE username = ?",
                "stmt.sharelog":"INSERT INTO shares (rem_host, username, our_result, upstream_result, reason, solution) VALUES (?, ?, ?, ?, ?, ?)"

},

# cache settings
"memcached" : {
"servers" : [
{ "host" : "127.0.0.1", "port" : 11211 }
]
},

"pid" : "/tmp/pushpoold.pid",

# overrides local hostname detection
#"forcehost" : "localhost.localdomain",

"log.requests" : "/tmp/request.log",
"log.shares" : "/tmp/shares.log",

# the server assumes longpolling (w/ SIGUSR1 called for each blk)
"longpoll.disable" : false,

# length of time to cache username/password credentials, in seconds
"auth.cred_cache.expire" : 75,

# RPC settings
"rpc.url" : "http://127.0.0.1:yyyy/",
"rpc.user" : "<rpc username in your coins .conf file>",
"rpc.pass" : "<password in your coins .conf file>",

# rewrite returned 'target' to given number of zero bits, 32 equals difficulty-1
#"rpc.target.bits" : 32,

# how long before work expires?
"work.expire" : 120,

# allow clients to update the ntime field of their work
"roll.ntime.disable" : false
}


Some notes: Although I used the mysql root account to access the database, it can be a security risk if you network is exposed to the public (not such a large deal for a home network). One can set a user account and give it permission to access the pool database if desired.
xxx.xxx.xxx.xxx = what the IP address of the computer (server) you are running the pool .
yyyy =  The rpc port the coin daemon is listening to (either you set (which I normally do) or the default)
I also comment out the Difficulty statement as there is no need to difficulty change on a solo pool since you are not paying out shares. This means the pool difficulty will equal the real difficulty.
I have also removed the share logs statement as there is no need to keep logs in a solo pool.

Next we are going to set-up a little script for tripping long polls:

I name mine blocknotify.sh:

Code:
#!/usr/bin/env python

import sys
import os

os.system("killall -s SIGUSR1 pushpoold")
Place it in your pushpool directory, and chmod  +x  blocknotify.sh   to make it executable.
Also place a copy of your coin daemon in your Pushpool directory, and when it comes time to start it, start it from there. This saves some hassle.

In your coins.conf file (junkcoin.conf) add the line:

Code:
blocknotify="<complete path to pushpool> /blocknotify.sh"

Example: blocknotify="/home/robert/pushpool/blocknotify.sh"
Ok, you should be all set up.

1.   Start your daemon (if using the command line version you will see a bunch of “cannot fins pushpoold.pid” type errors ,ignore them as you do not have Pushpool running yet.
The daemon is tripping the blocknotify script as it catches up and the script cannot find the Pushpool PID. This is harmless.

2.   Start Pushpool:
./pushpoold  –E  –F  --debug=2

The switches are optional, but I highly recommend them.

3.   You should see something like:
Code:
2013-04-17 19:41:5.676817] Debug output enabled
[2013-04-17 19:41:5.681610] Listening on host :: port 8336
[2013-04-17 19:41:5.681763] Listening on host :: port 8337
[2013-04-17 19:41:5.681842] Listening on host :: port 8339
[2013-04-17 19:41:5.681901] Listening on host 127.0.0.1 port 8338
[2013-04-17 19:41:5.686288] initialized

4 . Point your miners to the server @ port 8339 and you should be mining away using long poll.

The reason going through this to use long poll, is that long poll will switch your miners almost instantly when a new block is on the network.

With getwork, what you are using when connecting your miners to the daemon, your mining software checks for new blocks at certain intervals.

If a new block comes on the network just after your miner does a getwork, your miner will be working on a stale block until it checks again.

I know there will be many questions, but a review of this thread first, can help answer many of them:
https://bitcointalk.org/index.php?topic=10321.0

marcetin
Legendary
*
Offline Offline

Activity: 1124
Merit: 1013


ParalleCoin's ruler from the shadow


View Profile WWW
May 25, 2013, 06:46:19 PM
 #347

I have try to install Junkcoin on CentOS 6.4, but have no luck.
When do "make -f makefile.unix junkcoind"  I get :

Code:
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/home/jkc/JKC/src -I/home/jkc/JKC/src/obj -DUSE_UPNP=0 -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from main.h:12,
                 from checkpoints.cpp:12:
key.h:17:49: warning: openssl/ec.h: No such file or directory
In file included from main.h:12,
                 from checkpoints.cpp:12:
key.h:113: error: ISO C++ forbids declaration of ‘EC_KEY’ with no type
key.h:113: error: expected ‘;’ before ‘*’ token
make: *** [obj/checkpoints.o] Error 1

Does anyone know something about it?
My final goal is to make local JKC pool, but as I did not succeed installing even junkcoind I did not get far with plan.
I have try same with Ubuntu 11.10 but get similar results.

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  PLAN 9   FROM CRYPTO SPACE    PARALLELCOIN 
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
My fellow members, ask not what the community can do for you, ask what you can do for the community. CCW-WebRes-BitStickers-AnonStickers.shop------------------------------ ParallelCoin

The Secret of Success is to find out where people are going.. and get there first! - Mark Twain
Bitrated user: marcetin.
EnJoyThis
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1000


View Profile
May 25, 2013, 06:56:15 PM
 #348

@dreamwatcher

Thanks for the info, I got cgminer running as solo miner but indeed I need the pushpool.

Funning the miner for few minutes and only getting rejected blocks:

[P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
GPU 0:  75.0C 2575RPM | 475.6M/513.3Mh/s | A:0 R:111 HW:0 U:0.00/m I: 6
GPU 1:  77.0C 3333RPM | 522.3M/526.6Mh/s | A:0 R: 84 HW:0 U:0.00/m I: 8

So already @200 rejected blocks.


Is there an other way to use a pushpool? I don't have linux installed and don't have the knowledge to do so. I'm running Windows 7, perhaps you know any software for W7 to run a pushpool?

Or can longpoling from a pool server be used?

1Ew9k5guAGb44Uz6rYfSVscgFBUcgDZp5C
BrewCrewFan
Hero Member
*****
Offline Offline

Activity: 672
Merit: 501



View Profile
May 25, 2013, 07:00:58 PM
 #349

@dreamwatcher

Thanks for the info, I got cgminer running as solo miner but indeed I need the pushpool.

Funning the miner for few minutes and only getting rejected blocks:

[P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
GPU 0:  75.0C 2575RPM | 475.6M/513.3Mh/s | A:0 R:111 HW:0 U:0.00/m I: 6
GPU 1:  77.0C 3333RPM | 522.3M/526.6Mh/s | A:0 R: 84 HW:0 U:0.00/m I: 8

So already @200 rejected blocks.


Is there an other way to use a pushpool? I don't have linux installed and don't have the knowledge to do so. I'm running Windows 7, perhaps you know any software for W7 to run a pushpool?

Or can longpoling from a pool server be used?

The pool I use is:
jkc.sytes.net:19327

Of course its p2p and you would have your wallet addy as username and password would be x

Free SIGNs giving everyday. Be part, do not miss!.
SqMe5ceYfdcGsRyVpgvpYb6bRLS9j8omvB

XChat : Addy : XYuZESQpeMtZ2wit8nVVnXKGytfiaTBCo6 PubKey : eteshLzeq8Bh54BRjGSunMTc6Ytxtk7HYaSmDYMQn61z
EnJoyThis
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1000


View Profile
May 25, 2013, 07:02:00 PM
 #350

Do I need to add the pool to my pool management or how do I do it?



@dreamwatcher

Thanks for the info, I got cgminer running as solo miner but indeed I need the pushpool.

Funning the miner for few minutes and only getting rejected blocks:

[P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
GPU 0:  75.0C 2575RPM | 475.6M/513.3Mh/s | A:0 R:111 HW:0 U:0.00/m I: 6
GPU 1:  77.0C 3333RPM | 522.3M/526.6Mh/s | A:0 R: 84 HW:0 U:0.00/m I: 8

So already @200 rejected blocks.


Is there an other way to use a pushpool? I don't have linux installed and don't have the knowledge to do so. I'm running Windows 7, perhaps you know any software for W7 to run a pushpool?

Or can longpoling from a pool server be used?

The pool I use is:
jkc.sytes.net:19327

Of course its p2p and you would have your wallet addy as username and password would be x

1Ew9k5guAGb44Uz6rYfSVscgFBUcgDZp5C
dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 25, 2013, 07:20:24 PM
 #351

@dreamwatcher

Thanks for the info, I got cgminer running as solo miner but indeed I need the pushpool.

Funning the miner for few minutes and only getting rejected blocks:

[P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
GPU 0:  75.0C 2575RPM | 475.6M/513.3Mh/s | A:0 R:111 HW:0 U:0.00/m I: 6
GPU 1:  77.0C 3333RPM | 522.3M/526.6Mh/s | A:0 R: 84 HW:0 U:0.00/m I: 8

So already @200 rejected blocks.


Is there an other way to use a pushpool? I don't have linux installed and don't have the knowledge to do so. I'm running Windows 7, perhaps you know any software for W7 to run a pushpool?

Or can longpoling from a pool server be used?

I believe almost all, if not all pool software, is written around Linux.

CGminer will use the long poll from a pool in your pool list, if you are solo mining (I have not tested it on stratum only pools, like the one I run jkc.cryptocoinmine.com). As with most pools you will have to register so Cgminer can grab the LP (If it is available on a stratum only pool, I never looked into it).

If worse comes to worse, I can set up a pushpool on  jkc.cryptocoinmine.com, so miners can use its' LP, and cuda miners can mine there as well.

dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 25, 2013, 07:27:45 PM
 #352

I have try to install Junkcoin on CentOS 6.4, but have no luck.
When do "make -f makefile.unix junkcoind"  I get :

Code:
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/home/jkc/JKC/src -I/home/jkc/JKC/src/obj -DUSE_UPNP=0 -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from main.h:12,
                 from checkpoints.cpp:12:
key.h:17:49: warning: openssl/ec.h: No such file or directory
In file included from main.h:12,
                 from checkpoints.cpp:12:
key.h:113: error: ISO C++ forbids declaration of ‘EC_KEY’ with no type
key.h:113: error: expected ‘;’ before ‘*’ token
make: *** [obj/checkpoints.o] Error 1

Does anyone know something about it?
My final goal is to make local JKC pool, but as I did not succeed installing even junkcoind I did not get far with plan.
I have try same with Ubuntu 11.10 but get similar results.

The only Linux problems I have had is with Ubuntu 13.04.

shorten your compile line a bit.

I always just use
Code:
make -f makefile.unix


If you have miniupnpc & libupnpc-dev installed

Otherwise

Code:
make -f makefile.unix USE_UPNP=-

USE_UPNP=0 still requires the miniupnpc libraries as it will compile them, but turn it off by default at run time.


I noticed this as well

Code:
key.h:17:49: warning: openssl/ec.h: No such file or directory

Make sure you have:
Code:
libcurl4-openssl-dev
installed
EnJoyThis
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1000


View Profile
May 25, 2013, 07:31:38 PM
 #353

I think I have it running with the p2pool which BrewCrewFan posted.

Or am I mistaken? Here is my cgminer overview:


 cgminer version 2.11.3 - Started: [2013-05-25 21:30:07]
--------------------------------------------------------------------------------
 (5s):1.016G (avg):1.007Gh/s | Q:66  A:0  R:24  HW:0  E:0%  U:0.0/m
 ST: 6  SS: 0  DW: 5  NB: 2  LW: 12  GF: 0  RF: 0  WU: 0.0
 Connected to 127.0.0.1 diff 0 without LP as user EnJoyThis.1
 Block: 93d60931c6b5a12b...  Diff:1  Started: [21:31:01]  Best share: 40
--------------------------------------------------------------------------------
 [P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
 GPU 0:  69.0C 3353RPM | 491.2M/491.4Mh/s | A:0 R:14 HW:0 U:0.00/m I: 6
 GPU 1:  71.0C 4175RPM | 525.2M/524.5Mh/s | A:0 R:10 HW:0 U:0.00/m I: 6
--------------------------------------------------------------------------------

 [2013-05-25 21:30:52] Rejected 345c1ce6 Diff 4/0 BLOCK! GPU 0 pool 0
 [2013-05-25 21:30:56] Found block for pool 0!
 [2013-05-25 21:30:56] Rejected e653b119 Diff 1/0 BLOCK! GPU 1 pool 0
 [2013-05-25 21:31:01] New block detected on network
 [2013-05-25 21:31:04] Found block for pool 0!
 [2013-05-25 21:31:04] Rejected 5fa4e033 Diff 2/0 BLOCK! GPU 1 pool 0
 [2013-05-25 21:31:06] Block change for http://127.0.0.1:9772 detection via http
://jkc.sytes.net:19327 stratum
 [2013-05-25 21:31:08] Found block for pool 0!
 [2013-05-25 21:31:08] Rejected 2fb1f166 Diff 5/0 BLOCK! GPU 1 pool 0
 [2013-05-25 21:31:23] Found block for pool 0!
 [2013-05-25 21:31:23] Rejected 5bc4d3b9 Diff 2/0 BLOCK! GPU 1 pool 0

1Ew9k5guAGb44Uz6rYfSVscgFBUcgDZp5C
BrewCrewFan
Hero Member
*****
Offline Offline

Activity: 672
Merit: 501



View Profile
May 25, 2013, 07:41:03 PM
 #354

@dreamwatcher

Thanks for the info, I got cgminer running as solo miner but indeed I need the pushpool.

Funning the miner for few minutes and only getting rejected blocks:

[P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
GPU 0:  75.0C 2575RPM | 475.6M/513.3Mh/s | A:0 R:111 HW:0 U:0.00/m I: 6
GPU 1:  77.0C 3333RPM | 522.3M/526.6Mh/s | A:0 R: 84 HW:0 U:0.00/m I: 8

So already @200 rejected blocks.


Is there an other way to use a pushpool? I don't have linux installed and don't have the knowledge to do so. I'm running Windows 7, perhaps you know any software for W7 to run a pushpool?

Or can longpoling from a pool server be used?

I believe almost all, if not all pool software, is written around Linux.

CGminer will use the long poll from a pool in your pool list, if you are solo mining (I have not tested it on stratum only pools, like the one I run jkc.cryptocoinmine.com). As with most pools you will have to register so Cgminer can grab the LP (If it is available on a stratum only pool, I never looked into it).

If worse comes to worse, I can set up a pushpool on  jkc.cryptocoinmine.com, so miners can use its' LP, and cuda miners can mine there as well.


god your a flirt... you say that to all of us cuda miners ( I had to give up on gamecoin finally... not getting anywhere solo on that LOL )

Free SIGNs giving everyday. Be part, do not miss!.
SqMe5ceYfdcGsRyVpgvpYb6bRLS9j8omvB

XChat : Addy : XYuZESQpeMtZ2wit8nVVnXKGytfiaTBCo6 PubKey : eteshLzeq8Bh54BRjGSunMTc6Ytxtk7HYaSmDYMQn61z
dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 25, 2013, 07:44:24 PM
 #355

@dreamwatcher

Thanks for the info, I got cgminer running as solo miner but indeed I need the pushpool.

Funning the miner for few minutes and only getting rejected blocks:

[P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
GPU 0:  75.0C 2575RPM | 475.6M/513.3Mh/s | A:0 R:111 HW:0 U:0.00/m I: 6
GPU 1:  77.0C 3333RPM | 522.3M/526.6Mh/s | A:0 R: 84 HW:0 U:0.00/m I: 8

So already @200 rejected blocks.


Is there an other way to use a pushpool? I don't have linux installed and don't have the knowledge to do so. I'm running Windows 7, perhaps you know any software for W7 to run a pushpool?

Or can longpoling from a pool server be used?


I believe almost all, if not all pool software, is written around Linux.

CGminer will use the long poll from a pool in your pool list, if you are solo mining (I have not tested it on stratum only pools, like the one I run jkc.cryptocoinmine.com). As with most pools you will have to register so Cgminer can grab the LP (If it is available on a stratum only pool, I never looked into it).

If worse comes to worse, I can set up a pushpool on  jkc.cryptocoinmine.com, so miners can use its' LP, and cuda miners can mine there as well.


god your a flirt... you say that to all of us cuda miners ( I had to give up on gamecoin finally... not getting anywhere solo on that LOL )

 Cheesy Cheesy

Ok OK , I also received a request for pushpool in a PM as well. I will work on it today.  Tongue
dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 25, 2013, 09:52:35 PM
 #356

jkc.cryptocoinmine.com now has a LP port.

Port 8339

jkc.cryptocoinmine.com:8339  for Long Poll

jkc.cryptocoinmine.com:8080 for stratum

See, I am no flirt. It make take a little bit for me to get things done among my list of 10000 things I need to get done, but the important stuff does get done.  Tongue






@dreamwatcher

Thanks for the info, I got cgminer running as solo miner but indeed I need the pushpool.

Funning the miner for few minutes and only getting rejected blocks:

[P]ool management [G]PU management [S)ettings [D]isplay options [Q]uit
GPU 0:  75.0C 2575RPM | 475.6M/513.3Mh/s | A:0 R:111 HW:0 U:0.00/m I: 6
GPU 1:  77.0C 3333RPM | 522.3M/526.6Mh/s | A:0 R: 84 HW:0 U:0.00/m I: 8

So already @200 rejected blocks.


Is there an other way to use a pushpool? I don't have linux installed and don't have the knowledge to do so. I'm running Windows 7, perhaps you know any software for W7 to run a pushpool?

Or can longpoling from a pool server be used?


I believe almost all, if not all pool software, is written around Linux.

CGminer will use the long poll from a pool in your pool list, if you are solo mining (I have not tested it on stratum only pools, like the one I run jkc.cryptocoinmine.com). As with most pools you will have to register so Cgminer can grab the LP (If it is available on a stratum only pool, I never looked into it).

If worse comes to worse, I can set up a pushpool on  jkc.cryptocoinmine.com, so miners can use its' LP, and cuda miners can mine there as well.


god your a flirt... you say that to all of us cuda miners ( I had to give up on gamecoin finally... not getting anywhere solo on that LOL )

 Cheesy Cheesy

Ok OK , I also received a request for pushpool in a PM as well. I will work on it today.  Tongue

BrewCrewFan
Hero Member
*****
Offline Offline

Activity: 672
Merit: 501



View Profile
May 25, 2013, 10:30:15 PM
 #357

TY dream!

Free SIGNs giving everyday. Be part, do not miss!.
SqMe5ceYfdcGsRyVpgvpYb6bRLS9j8omvB

XChat : Addy : XYuZESQpeMtZ2wit8nVVnXKGytfiaTBCo6 PubKey : eteshLzeq8Bh54BRjGSunMTc6Ytxtk7HYaSmDYMQn61z
dreamwatcher (OP)
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile WWW
May 27, 2013, 11:07:17 AM
 #358

I have been tinkering around with the cosmetics of CCE.

Check out the look of the homepage. http://cryptocoinexplorer.com/

I also applied the same sort of theme to the JKC explorer. http://jkc.cryptocoinexplorer.com/

Let me know what you think. If it looks good, I will apply the theme to all the explorers.

WOPR
Full Member
***
Offline Offline

Activity: 223
Merit: 100


Birb.co Bounty and Airdrop Manager


View Profile
May 30, 2013, 02:15:05 PM
 #359

I have been tinkering around with the cosmetics of CCE.

Check out the look of the homepage. http://cryptocoinexplorer.com/

I also applied the same sort of theme to the JKC explorer. http://jkc.cryptocoinexplorer.com/

Let me know what you think. If it looks good, I will apply the theme to all the explorers.



Nice design

kevindeangelis
Full Member
***
Offline Offline

Activity: 448
Merit: 130


3D-Printing goes Blockchain!


View Profile
May 31, 2013, 07:23:50 PM
 #360

can anyone recommend an exchange to sell jkc?

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 [18] 19 20 21 22 23 »  All
  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!