Bitcoin Forum
April 19, 2024, 07:46:43 AM *
News: Latest Bitcoin Core release: 26.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 »
  Print  
Author Topic: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux  (Read 198661 times)
LordTheron
Full Member
***
Offline Offline

Activity: 197
Merit: 100


View Profile WWW
May 15, 2013, 10:20:42 PM
 #201

when i put bitcoind, cursor is just flashing, it doesnt say its staring or anything.

Anyway I got it working, Ive used rpc user and pass exactly as in the guide and its says bitcoin server starting. Quick question.. how complex the password has to be? looks like it wasn't happy with my rpcpassword or rpcuser.

Also should I see anything else except bitcoin server staring? its been sitting on it for about 10 min.
If you see garbage posts (off-topic, trolling, spam, no point, etc.), use the "report to moderator" links. All reports are investigated, though you will rarely be contacted about your reports.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713512803
Hero Member
*
Offline Offline

Posts: 1713512803

View Profile Personal Message (Offline)

Ignore
1713512803
Reply with quote  #2

1713512803
Report to moderator
1713512803
Hero Member
*
Offline Offline

Posts: 1713512803

View Profile Personal Message (Offline)

Ignore
1713512803
Reply with quote  #2

1713512803
Report to moderator
1713512803
Hero Member
*
Offline Offline

Posts: 1713512803

View Profile Personal Message (Offline)

Ignore
1713512803
Reply with quote  #2

1713512803
Report to moderator
tiktoc
Full Member
***
Offline Offline

Activity: 176
Merit: 100


View Profile
May 15, 2013, 11:07:42 PM
 #202

Put it in the background still with the -daemon flag

if it is syncing from scratch it will take two to 8 hours depending on connection speed and server speed.
hoss
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
May 19, 2013, 08:31:27 PM
 #203

Question:  If I mine BTC and earn a reward for shares at say ~.000xBTC or less, then how does that get transferred to my wallet without a network fee? My current pool saves my reward up to 1BTC then sends it to my address thus avoiding the fee. (currently @ 1.5GHs)
bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
May 19, 2013, 08:56:35 PM
 #204

There is no transfer. These are virgin coins that get attached to your address. They are attached not transferred.

bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
May 19, 2013, 08:59:27 PM
 #205

There's another nuance you should be aware of though. You can't spend virgin coins for 120 confirmations. Pros and cons baby.

prophetx
Legendary
*
Offline Offline

Activity: 1666
Merit: 1010


he who has the gold makes the rules


View Profile WWW
May 25, 2013, 10:58:11 AM
 #206

anyone know what the parameter is to limit the payment tx to a miner so that it only get's sent out when they reach a certain threshold?

I'm getting these tiny micro payments every hour and it's causing litecoin qt to try to charge me 3.4 ltc just to send out 11 ltc!!
bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
May 25, 2013, 11:03:23 AM
 #207

You can't wait

Decagrog
Sr. Member
****
Offline Offline

Activity: 289
Merit: 251



View Profile
May 28, 2013, 09:07:22 AM
 #208

Hi,
I'm trying to start a digitalcoin p2pool, I've installed narken p2pool and already succesfully tested with litecoin, so I decided to try with other altcoin...on the digitalcoin thread there are posted the configurations for p2pool/networks.py and p2pool/bitcoin/networks.py

Code:
    digital=math.Object(
        PARENT=networks.nets['digital'],
        SHARE_PERIOD=15, # seconds target spacing
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares coinbase maturity
        SPREAD=30, # blocks
        IDENTIFIER='be43F6b8c6927210'.decode('hex'),
        PREFIX='b587193ba6d4749a'.decode('hex'),
        P2P_PORT=5477,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=9500,
        BOOTSTRAP_ADDRS=''.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

Code:
    digital=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=7999,
        ADDRESS_VERSION=30,
        RPC_PORT=7998,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'digitalcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 1*10000000 >> (height + 1)//1080000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30, # s targetspacing
        SYMBOL='DGC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'franko') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Doubloons/') if platform.system() == 'Darwin' else os.path.expanduser('~/.digitalcoin'), 'digitalcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://54.244.192.52/doubloon/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://54.244.192.52/doubloon/address/',
        SANE_TARGET_RANGE=(2**256//100000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),


My digitalcoin.conf is:

Code:
rpcuser=xxx
rpcpassword=xxx
server=1
daemon=1
rpcport=7998
port=7999


When I'm starting the p2pool I get this error:

Code:
2013-05-28 03:52:08.715777 Initializing work...
2013-05-28 03:52:08.800143     ...success!
2013-05-28 03:52:08.800265
2013-05-28 03:52:08.800346 Joining p2pool network using port 5477...
2013-05-28 03:52:08.801582     ...success!
2013-05-28 03:52:08.801656
2013-05-28 03:52:08.802686 Listening for workers on '' port 9500...
2013-05-28 03:52:08.839512     ...success!
2013-05-28 03:52:08.839627
2013-05-28 03:52:08.839696 Started successfully!
2013-05-28 03:52:08.839769 Go to http://127.0.0.1:9500/ to view graphs and statistics!
2013-05-28 03:52:08.839849 Donating 0.0% of work towards P2Pool's development. Please donate to encourage further development of P2Pool!
2013-05-28 03:52:08.839930
2013-05-28 03:52:08.846531 Peer 0.0.0.0:5477 misbehaving, will drop and ban. Reason: was connected to self
2013-05-28 03:52:08.847887 Peer 127.0.0.1:33164 misbehaving, will drop and ban. Reason: was connected to self
2013-05-28 03:52:11.840261 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)
2013-05-28 03:52:11.840398  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???
2013-05-28 03:52:26.841202 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)
2013-05-28 03:52:26.841310  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???
2013-05-28 03:52:41.841972 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)
2013-05-28 03:52:41.842061  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???
2013-05-28 03:52:56.842672 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)


 it seems that I can't connect outside? I've also temporary disabled the firewall but with no change...

The command used to start the p2pool is that:

Code:
 screen -d -m -S ltcp2pool ./run_p2pool.py --give-author 0 --fee 0  --bitcoind-p2p-port 7999 --bitcoind-rpc-port 7998  --net digital xxx xxx

If I try to mine I can't even connect to the p2pool, can anyone give me an hint?  Embarrassed

bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
May 28, 2013, 09:09:41 AM
 #209

You have no peers
BOOTSTRAP_ADDRS=''.split(' '),
This is a peer2peer pool

Decagrog
Sr. Member
****
Offline Offline

Activity: 289
Merit: 251



View Profile
May 28, 2013, 09:40:04 AM
 #210

You have no peers
BOOTSTRAP_ADDRS=''.split(' '),
This is a peer2peer pool

Thanks for point me that...I thought would be able at least to mine locally, if If I were the first to setup a p2pool what address should i put?

Also, I've added 3-4 p2pool address founded in the digicoin OP first post but I can't connect to anyone (  Handshake timed out, disconnecting from x.x.x.x )  Huh

bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
May 28, 2013, 09:48:10 AM
 #211

I dont know but it seems it keeps trying to connect to itself so I'm pretty sure it needs atleast one peer. It's how it secures itself.

CartmanSPC
Legendary
*
Offline Offline

Activity: 1270
Merit: 1000



View Profile
May 29, 2013, 04:49:49 AM
 #212

Here is the link to the source. you only need the two networks.py and helper.py though.

https://github.com/hakabane/p2pool-altcoins

Decagrog
Sr. Member
****
Offline Offline

Activity: 289
Merit: 251



View Profile
June 01, 2013, 12:52:01 PM
 #213

Here is the link to the source. you only need the two networks.py and helper.py though.

https://github.com/hakabane/p2pool-altcoins

I was using hakabane network.py and helper.py files so I assume that the problem is not here...
Adding your pool url to bootstrap parameter can get past the p2pool error but still i cant connect with cgminer:

 
Code:
 [2013-06-01 14:34:44] Testing pool http://208.117.43.200:9327
 [2013-06-01 14:34:45] HTTP request failed: The requested URL returned error: 401
 [2013-06-01 14:34:45] HTTP request failed: The requested URL returned error: 401
 [2013-06-01 14:35:44] No servers were found that could be used to get work from.
 [2013-06-01 14:35:44] Please check the details from the list below of the servers you have input
 [2013-06-01 14:35:44] Most likely you have input the wrong URL, forgotten to add a port, or have no
t set up workers

double checked url and tried to change to other ports but with no luck....

CartmanSPC
Legendary
*
Offline Offline

Activity: 1270
Merit: 1000



View Profile
June 01, 2013, 07:34:21 PM
 #214

I had to turn off connecting to other Digitalcoin P2Pools using hakabanes code. Too many orphans.

Check to see that incoming TCP connections to the port your using (9327) are open on the firewall. Will try it now...ok it shows as being down so I can't connect to your pool either.

Decagrog
Sr. Member
****
Offline Offline

Activity: 289
Merit: 251



View Profile
June 01, 2013, 09:56:29 PM
Last edit: June 02, 2013, 07:22:50 AM by Decagrog
 #215

I had to turn off connecting to other Digitalcoin P2Pools using hakabanes code. Too many orphans.

Check to see that incoming TCP connections to the port your using (9327) are open on the firewall. Will try it now...ok it shows as being down so I can't connect to your pool either.

Sorry I've the pool still active but I've switched back to port 7998 , still same problem...I've the firewall temporary disableb and if I try to telnet 208.117.43.200 7998  the port result open.  
The strange thing is that I've managed to connect the miner to the pool only using the same username and pass in the digicoin.conf...well it only connect but then can't mine, the frontend graph don't show any miner  Roll Eyes

If someone want to give a try the p2pool url is 208.117.43.200:7998   and frontend is http://208.117.43.200:25397/static/ 

Decagrog
Sr. Member
****
Offline Offline

Activity: 289
Merit: 251



View Profile
June 02, 2013, 08:00:06 PM
 #216

I've finally got the pool to work!  Grin
Didn't found the exact problem but I've downloaded and compiled again the digicoin source and started flawlessly  Grin
If someone want to test the p2pool the final address is http://208.117.43.200:5400 (yes i've changed the port again), I'm putting on it about 1.1mh/s

CartmanSPC
Legendary
*
Offline Offline

Activity: 1270
Merit: 1000



View Profile
June 03, 2013, 12:36:23 AM
 #217

Your having the same problem I was with orphans using hakabanes code. If you like we can connect our two pool together with my code to see if the orphans problem goes away?

...good job though Smiley

BTW, I found that you have to delete the data/digitalcoin folder between certain code changes. Maybe that was part of your problem.

Decagrog
Sr. Member
****
Offline Offline

Activity: 289
Merit: 251



View Profile
June 03, 2013, 05:51:50 AM
 #218

Your having the same problem I was with orphans using hakabanes code. If you like we can connect our two pool together with my code to see if the orphans problem goes away?

...good job though Smiley

BTW, I found that you have to delete the data/digitalcoin folder between certain code changes. Maybe that was part of your problem.

Thanks CartmanSPC ,  I've added your pool to the boostrap_addr (is dgc.xpool.net right? ) let's see if the orphan rate drop

CartmanSPC
Legendary
*
Offline Offline

Activity: 1270
Merit: 1000



View Profile
June 03, 2013, 05:56:05 AM
 #219

Your having the same problem I was with orphans using hakabanes code. If you like we can connect our two pool together with my code to see if the orphans problem goes away?

...good job though Smiley

BTW, I found that you have to delete the data/digitalcoin folder between certain code changes. Maybe that was part of your problem.

Thanks CartmanSPC ,  I've added your pool to the boostrap_addr (is dgc.xpool.net right? ) let's see if the orphan rate drop

There's more to it than that but lets move this to PM's.

eroxors
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Think. Positive. Thoughts.


View Profile WWW
June 11, 2013, 07:24:55 PM
 #220

When I try to compile devcoin, it says make: *** No rule to make target 'bitcoind'. Stop.

Any ideas? I followed instructions accurately.

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 »
  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!