rav3n_pl
Legendary
Offline
Activity: 1361
Merit: 1003
Don`t panic! Organize!
|
|
October 22, 2012, 10:58:47 PM |
|
is there a neat way to look at the curent sharechain?
In meaning? You can look at stats page. im talking about the share explorer, its not really usage friendly to get a fast overview Write some JS to make it ;]
|
|
|
|
|
jiyu_shi
Member
Offline
Activity: 81
Merit: 10
|
|
October 23, 2012, 03:45:15 AM |
|
Does the 8.2version support litecoin network? I try to run p2pool 8.2v in LTC network, it will not show poolspeed, and cpu-miner will not work. Try 5.0v, it promptes to upgrade.
|
|
|
|
Naelr
|
|
October 23, 2012, 04:20:30 AM |
|
Does the 8.2version support litecoin network? I try to run p2pool 8.2v in LTC network, it will not show poolspeed, and cpu-miner will not work. Try 5.0v, it promptes to upgrade.
I am running it on litecoin network... BTC http://fearmypenguin.ath.cx:9332LTC http://fearmypenguin.ath.cx:9327not mining it right now but was last night. Naelr
|
|
|
|
|
rav3n_pl
Legendary
Offline
Activity: 1361
Merit: 1003
Don`t panic! Organize!
|
|
October 23, 2012, 06:18:02 AM |
|
"Note that blocks may have been orphaned from the P2Pool chain and so not be here." Some blocks are found by orphaned/doa shares
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
October 23, 2012, 06:23:24 AM |
|
"Note that blocks may have been orphaned from the P2Pool chain and so not be here." Some blocks are found by orphaned/doa shares thanks
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
mdude77
Legendary
Offline
Activity: 1540
Merit: 1001
|
|
October 23, 2012, 10:25:40 AM |
|
i hope this bad luck round is over soon We got no less than 6 blocks two days ago. That's about 3x as many as we should at our hashrate. I'm not complaining about a slow period!! M
|
I mine at Kano's Pool because it pays the best and is completely transparent! Come join me!
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
October 23, 2012, 11:32:10 AM |
|
i hope this bad luck round is over soon We got no less than 6 blocks two days ago. That's about 3x as many as we should at our hashrate. I'm not complaining about a slow period!! M me neither. i joined 2 days ago
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
cabin
|
|
October 23, 2012, 02:24:13 PM |
|
I've seen some evidence of this as well.. although I'm not 100% sure I'm logging the correct metric. I log the time for the getwork function in main.py and the delay is often in the 1-2 second range now whereas before it was often under 0.5 secs: # BITCOIND WORK bitcoind_work = variable.Variable((yield getwork(bitcoind))) @defer.inlineCallbacks def work_poller(): while True: flag = factory.new_block.get_deferred() try: my_time = time.time() bitcoind_work.set((yield getwork(bitcoind, bitcoind_work.value['use_getblocktemplate']))) my_time2 = time.time() - my_time if (my_time2 > 0.5): print "slow bitcoind: %.02f" % (my_time2,) Also, my miner is also getting a rather high reject rate. I haven't changed my miner settings at all and I'm running the latest bitcoind and p2pool. My reject used to be <3% and now its ~6%
There are some possible optimizations for the new transaction handling, which could be causing this by introducing some new latency. I'll look into it over the next few days.
|
|
|
|
tucenaber
|
|
October 23, 2012, 04:58:07 PM |
|
I've seen some evidence of this as well.. although I'm not 100% sure I'm logging the correct metric. I log the time for the getwork function in main.py and the delay is often in the 1-2 second range now whereas before it was often under 0.5 secs:
Your metric seems to measure the performance of bitcoin, not p2pool. Could it be that bitcoind is lagging more and more from the ever increasing load? I have tried the latest experimental "ultraprune" bitcoin (git head) for about a day now, and have seen my stale rate go from 6-8% down to 3-4%. I have no nifty metrics other than what p2pool provides out of the box, though.
|
|
|
|
cabin
|
|
October 23, 2012, 05:59:15 PM |
|
I agree it is mostly measuring bitcoin performance. With the new p2pool version some transaction data is now being distributed with p2pool and so that might lessen the load on bitcoind and make it return faster? We'll see I guess when it is fully switched over to 0.8. That is good news about the latest bitcoin.. I'll try the release candidates when they start coming out. I've seen some evidence of this as well.. although I'm not 100% sure I'm logging the correct metric. I log the time for the getwork function in main.py and the delay is often in the 1-2 second range now whereas before it was often under 0.5 secs:
Your metric seems to measure the performance of bitcoin, not p2pool. Could it be that bitcoind is lagging more and more from the ever increasing load? I have tried the latest experimental "ultraprune" bitcoin (git head) for about a day now, and have seen my stale rate go from 6-8% down to 3-4%. I have no nifty metrics other than what p2pool provides out of the box, though.
|
|
|
|
CJM1682
Member
Offline
Activity: 86
Merit: 10
|
|
October 24, 2012, 02:11:18 AM |
|
i am having problems compiling for use with litecoin i keep receiving the following error any help???
C:\p2pool\litecoin_scrypt>C:\Python27\python.exe setup.py build --compile=mingw3 2 install running build running build_ext building 'ltc_scrypt' extension creating build creating build\temp.win32-2.7 creating build\temp.win32-2.7\Release gcc -mno-cygwin -mdll -O -Wall -I. -IC:\Python27\include -IC:\Python27\PC -c scr yptmodule.c -o build\temp.win32-2.7\Release\scryptmodule.o error: command 'gcc' failed: No such file or directory
Windows 7 64bit all the recommended packages were installed
|
LTC: LcN9tjjcNyjgE7HnZHSC686fWuhUUCiWsn BTC: 163MGvqd2mr7iHumVYSpEM9jpS7dfEEqkv CHN: CY2tsr2JKmQa7tUgZW9SkRJyUNwHzvveT2 FTC: 6uH8iaXt23WPVcJHy8eGLtm5cst5kYQnhN
|
|
|
forrestv (OP)
|
|
October 24, 2012, 02:30:36 AM |
|
i am having problems compiling for use with litecoin i keep receiving the following error any help???
C:\p2pool\litecoin_scrypt>C:\Python27\python.exe setup.py build --compile=mingw3 2 install running build running build_ext building 'ltc_scrypt' extension creating build creating build\temp.win32-2.7 creating build\temp.win32-2.7\Release gcc -mno-cygwin -mdll -O -Wall -I. -IC:\Python27\include -IC:\Python27\PC -c scr yptmodule.c -o build\temp.win32-2.7\Release\scryptmodule.o error: command 'gcc' failed: No such file or directory
Windows 7 64bit all the recommended packages were installed
You do know about the Windows binaries, right? If you don't want to use them, you can unzip the Windows binary to extract ltc_scrypt.pyd and use it. If you're set on compiling that library yourself, you need to install MinGW.
|
1J1zegkNSbwX4smvTdoHSanUfwvXFeuV23
|
|
|
CJM1682
Member
Offline
Activity: 86
Merit: 10
|
|
October 24, 2012, 02:35:41 AM |
|
i am having problems compiling for use with litecoin i keep receiving the following error any help???
C:\p2pool\litecoin_scrypt>C:\Python27\python.exe setup.py build --compile=mingw3 2 install running build running build_ext building 'ltc_scrypt' extension creating build creating build\temp.win32-2.7 creating build\temp.win32-2.7\Release gcc -mno-cygwin -mdll -O -Wall -I. -IC:\Python27\include -IC:\Python27\PC -c scr yptmodule.c -o build\temp.win32-2.7\Release\scryptmodule.o error: command 'gcc' failed: No such file or directory
Windows 7 64bit all the recommended packages were installed
You do know about the Windows binaries, right? If you don't want to use them, you can unzip the Windows binary to extract ltc_scrypt.pyd and use it. If you're set on compiling that library yourself, you need to install MinGW. I tried the binaries i just figured i was doing something wrong when the p2pool exe would not run in litecoin mode. I added run_p2pool.exe" --net litecoin user password to my shortcut but the file still insists on looking for the bitcoin rpc server not the litecoin.
|
LTC: LcN9tjjcNyjgE7HnZHSC686fWuhUUCiWsn BTC: 163MGvqd2mr7iHumVYSpEM9jpS7dfEEqkv CHN: CY2tsr2JKmQa7tUgZW9SkRJyUNwHzvveT2 FTC: 6uH8iaXt23WPVcJHy8eGLtm5cst5kYQnhN
|
|
|
forrestv (OP)
|
|
October 24, 2012, 02:37:54 AM |
|
i am having problems compiling for use with litecoin i keep receiving the following error any help???
C:\p2pool\litecoin_scrypt>C:\Python27\python.exe setup.py build --compile=mingw3 2 install running build running build_ext building 'ltc_scrypt' extension creating build creating build\temp.win32-2.7 creating build\temp.win32-2.7\Release gcc -mno-cygwin -mdll -O -Wall -I. -IC:\Python27\include -IC:\Python27\PC -c scr yptmodule.c -o build\temp.win32-2.7\Release\scryptmodule.o error: command 'gcc' failed: No such file or directory
Windows 7 64bit all the recommended packages were installed
You do know about the Windows binaries, right? If you don't want to use them, you can unzip the Windows binary to extract ltc_scrypt.pyd and use it. If you're set on compiling that library yourself, you need to install MinGW. I tried the binaries i just figured i was doing something wrong when the p2pool exe would not run in litecoin mode. I added run_p2pool.exe" --net litecoin user password to my shortcut but the file still insists on looking for the bitcoin rpc server not the litecoin. Some messages on the console still mention "bitcoind" even if it's trying to connect to litecoind. Maybe pastebin the output?
|
1J1zegkNSbwX4smvTdoHSanUfwvXFeuV23
|
|
|
CJM1682
Member
Offline
Activity: 86
Merit: 10
|
|
October 24, 2012, 02:46:40 AM |
|
i am having problems compiling for use with litecoin i keep receiving the following error any help???
C:\p2pool\litecoin_scrypt>C:\Python27\python.exe setup.py build --compile=mingw3 2 install running build running build_ext building 'ltc_scrypt' extension creating build creating build\temp.win32-2.7 creating build\temp.win32-2.7\Release gcc -mno-cygwin -mdll -O -Wall -I. -IC:\Python27\include -IC:\Python27\PC -c scr yptmodule.c -o build\temp.win32-2.7\Release\scryptmodule.o error: command 'gcc' failed: No such file or directory
Windows 7 64bit all the recommended packages were installed
You do know about the Windows binaries, right? If you don't want to use them, you can unzip the Windows binary to extract ltc_scrypt.pyd and use it. If you're set on compiling that library yourself, you need to install MinGW. I tried the binaries i just figured i was doing something wrong when the p2pool exe would not run in litecoin mode. I added run_p2pool.exe" --net litecoin user password to my shortcut but the file still insists on looking for the bitcoin rpc server not the litecoin. Some messages on the console still mention "bitcoind" even if it's trying to connect to litecoind. Maybe pastebin the output? just says testing bitcoind rpc connection to ' http://127.0.0.1:9332 with username X then error while checking bitcoin connection my litecoin is running on server 10332 because i am also running a p2pool connection for bitcoin on the 9332 and 9333 ports can i force the p2pool to look on an alternate port?
|
LTC: LcN9tjjcNyjgE7HnZHSC686fWuhUUCiWsn BTC: 163MGvqd2mr7iHumVYSpEM9jpS7dfEEqkv CHN: CY2tsr2JKmQa7tUgZW9SkRJyUNwHzvveT2 FTC: 6uH8iaXt23WPVcJHy8eGLtm5cst5kYQnhN
|
|
|
forrestv (OP)
|
|
October 24, 2012, 02:49:01 AM |
|
just says testing bitcoind rpc connection to ' http://127.0.0.1:9332 with username X then error while checking bitcoin connection my litecoin is running on server 10332 because i am also running a p2pool connection for bitcoin on the 9332 and 9333 ports can i force the p2pool to look on an alternate port? Maybe try starting run_p2pool.exe from the command-line? It sounds like p2pool isn't receiving the "--net litecoin" argument at all...
|
1J1zegkNSbwX4smvTdoHSanUfwvXFeuV23
|
|
|
CJM1682
Member
Offline
Activity: 86
Merit: 10
|
|
October 24, 2012, 02:53:21 AM |
|
just says testing bitcoind rpc connection to ' http://127.0.0.1:9332 with username X then error while checking bitcoin connection my litecoin is running on server 10332 because i am also running a p2pool connection for bitcoin on the 9332 and 9333 ports can i force the p2pool to look on an alternate port? Maybe try starting run_p2pool.exe from the command-line? It sounds like p2pool isn't receiving the "--net litecoin" argument at all... same response now still launches looking for a connection on port 9332 9333 can i force it to look on a different port?
|
LTC: LcN9tjjcNyjgE7HnZHSC686fWuhUUCiWsn BTC: 163MGvqd2mr7iHumVYSpEM9jpS7dfEEqkv CHN: CY2tsr2JKmQa7tUgZW9SkRJyUNwHzvveT2 FTC: 6uH8iaXt23WPVcJHy8eGLtm5cst5kYQnhN
|
|
|
forrestv (OP)
|
|
October 24, 2012, 02:59:46 AM |
|
just says testing bitcoind rpc connection to ' http://127.0.0.1:9332 with username X then error while checking bitcoin connection my litecoin is running on server 10332 because i am also running a p2pool connection for bitcoin on the 9332 and 9333 ports can i force the p2pool to look on an alternate port? Maybe try starting run_p2pool.exe from the command-line? It sounds like p2pool isn't receiving the "--net litecoin" argument at all... same response now still launches looking for a connection on port 9332 9333 can i force it to look on a different port? Yes, there's the --bitcoind-rpc-port and --bitcoind-p2p-port arguments. Try running "run_p2pool.exe --help".
|
1J1zegkNSbwX4smvTdoHSanUfwvXFeuV23
|
|
|
|