Bitcoin Forum
May 23, 2024, 12:51:01 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 »
261  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DGC] DigitalCoin.Co || Instant | Stable | Reliable || ~UPDATED~ on: May 28, 2013, 10:01:01 AM
For p2pool anyone know what address should i put in the BOOTSTRAP_ADDRS=''.split(' '), ?  
I've tried to put 3-4 address from other p2pool in the first post but get those error

Code:
2013-05-28 05:01:00.699873 Handshake timed out, disconnecting from 205.173.255.101:9788
2013-05-28 05:01:06.585062 Handshake timed out, disconnecting from 108.58.12.54:21111
2013-05-28 05:01:08.677820 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)
2013-05-28 05:01:08.678062  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???
2013-05-28 05:01:16.877341 Handshake timed out, disconnecting from 108.58.12.54:21111
2013-05-28 05:01:21.886848 Handshake timed out, disconnecting from 205.173.255.101:9788
2013-05-28 05:01:23.679910 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)
2013-05-28 05:01:23.680168  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???
2013-05-28 05:01:26.399805 Handshake timed out, disconnecting from 88.161.131.83:8119
2013-05-28 05:01:29.498812 Handshake timed out, disconnecting from 108.58.12.54:21111

Seems unable to connect to any peer...
262  Alternate cryptocurrencies / Pools (Altcoins) / Re: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux on: May 28, 2013, 09:40:04 AM
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
263  Alternate cryptocurrencies / Pools (Altcoins) / Re: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux on: May 28, 2013, 09:07:22 AM
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
264  Alternate cryptocurrencies / Altcoin Discussion / Re: p2pool networks.py altcoins on: May 26, 2013, 05:13:56 AM
I'm on your same boat, we could put down a list explaining what to put in each parameter, I've seen that some info can be founded in the altcoin main.cpp
Especially INDENTIFIER and PREFIX, what those are?
265  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] LuckyCoin LKY | Lucky Blocks | Fast | Fun | Fair on: May 25, 2013, 03:46:31 PM
Anyone know how to configure the parameters in network.py file for run a luckycoin p2pool?
266  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] P2Pool code base for CNC/FTC/JKC/BQC/RYC/MNC/FRK based on newest p2pool on: May 25, 2013, 03:35:18 PM
I would like to setup a pool for a couple of new altcoin but seems no trivial...anyone can explain a bit how to setup the parameter in network.py for different altcoin?
For example what are IDENTIFIER and PREFIX value? They can be retrieved in the main.cpp code?
267  Alternate cryptocurrencies / Altcoin Discussion / Re: [YAC] Fontas said a new coin will be on BTC-e tomorrow. on: May 19, 2013, 04:07:32 PM
what did fontas do???

Nothing special, just a bit noisy eheheh...
268  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/19/2013 12AM UTC [UPDATED RELEASE] on: May 19, 2013, 03:45:26 PM
Maybe Niblr?
269  Alternate cryptocurrencies / Altcoin Discussion / Re: [YAC] Fontas said a new coin will be on BTC-e tomorrow. on: May 19, 2013, 03:42:12 PM
Only for lulz  Grin


270  Alternate cryptocurrencies / Altcoin Discussion / Re: Its not ridiculous enough yet I say! on: May 19, 2013, 01:55:55 PM
You need also a bigger monitor  Grin
271  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/19/2013 12AM UTC [UPDATED RELEASE] on: May 19, 2013, 09:58:37 AM
With the actual difficult I guess that there is no convenience to solo mining with 600khash/s, right?

Should be no problem, either mining solo or at pool should give you approx. 7 blocks.
At difficulty 1 it would take 2 hours with 600kh/s, for me it's 2.30hrs.

Thanks, I'll give a try until the difficult remain @ 1
272  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/19/2013 12AM UTC [UPDATED RELEASE] on: May 19, 2013, 09:52:39 AM
With the actual difficult I guess that there is no convenience to solo mining with 600khash/s, right?
273  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/19/2013 12AM UTC [UPDATED RELEASE] on: May 19, 2013, 12:52:20 AM
POOL UP:

http://nibble.scryptmining.com


May be a bit rough around the edges, very quick throwing it together.  Try it out and let me know of any problems!

Khash rate on front end is showing my rate at 90 khash, my miners are totaling ~450 khash in the console. This is 10 minutes after starting. Is the front end data not right?

Likely need to tweak the hashrate calc, but rest assured it'll have no affect on any payouts ect. Its strictly a display thing atm.   Trying to confirm the hashpower is going to good use first, if we ever get a block confirmed Sad

Yeah is not represent the real speed, sorry if my reply seemed to be misleading  and thanks for getting up a pool so fast Smiley
274  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/19/2013 12AM UTC [UPDATED RELEASE] on: May 19, 2013, 12:49:12 AM
POOL UP:

http://nibble.scryptmining.com


May be a bit rough around the edges, very quick throwing it together.  Try it out and let me know of any problems!

Khash rate on front end is showing my rate at 90 khash, my miners are totaling ~450 khash in the console. This is 10 minutes after starting. Is the front end data not right?

Me too, I guess that the khash speed info is not reliable at the moment
275  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/19/2013 12AM UTC [UPDATED RELEASE] on: May 19, 2013, 12:46:06 AM
So anyone with the windows client got coins?

6

Thanks, well at least we know that is working...
276  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/19/2013 12AM UTC [UPDATED RELEASE] on: May 19, 2013, 12:44:11 AM
So anyone with the windows client got coins?
277  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] The Nibble - Real Currency - 5/18/2013 11PM UTC on: May 18, 2013, 11:31:37 PM
OP is also offline, probably tricked all of us to stay awake all night...  Grin
278  Other / Beginners & Help / Re: Mining rig far from the router - possible wifi solution? on: May 16, 2013, 07:17:51 AM
Create a half-cylinder shape with aluminum wrap. Place it behind the antenna and adjust so that the antenna is at the focus point. Check signal quality while you adjust positioning for both antennas. Also, try increasing transmit power from the router if possible and choose the channel (frequency) with the least interference.  If done right, the signal can go through several walls and ceilings.

As i said before I played for long with those hacks, they are nice and userful  but now I need a better solution, I can't keep the antenna inside (too much signal loss) and I can't keep the router outside ( is not hard waterproofing it but it will result very bulky and I can't power it over eth)

I think that an adapter like the one I've linked is a far better option: PoE (so just one cable) , waterproof, booster integrated, antenna and small form factor ...I just need to know if someone have ever tried a similar product  Smiley

Btw looking for the channel interference it's a good suggestion, I've found a nice android app for wifi monitoring and this evening I'll try to find the most efficient  channel  Grin
279  Other / Beginners & Help / Re: Mining rig far from the router - possible wifi solution? on: May 15, 2013, 08:10:20 AM
Uhmn, thanks for the reply but yesterday I've installed on the router a 9db omnidirectional antenna and I've checked the signal with the phone, it barely go over 30mt without any wall  Undecided
Uh, yeah. Hence why you need a directional antenna. All is not lost, however, as you can crudely convert an omnidirectional antenna into a directional one using ordinary cooking utensils. That should give you a range of at least a couple of hundred metres (within line of sight).

Yeah I've used in the past to experiment with those "poor man" solutions but little result, moreover I would like to have on the balcony some more discreet  Grin
Instead I was thinking to something like that http://www.ebay.com/itm/high-gain-directional-For-Para-wifi-USB-antenna-antena-wireless-network-extender-/251272563833?pt=US_USB_Wi_Fi_Adapters_Dongles&hash=item3a81030c79

Is a directional outdoor antenna with embedded an usb adapter .... the booster output is not specified but since is directional pointing it out of my room should be safe.
Still i don't know if a similar setup will work  Roll Eyes
280  Other / Beginners & Help / Re: Mining rig far from the router - possible wifi solution? on: May 15, 2013, 06:54:26 AM
Uhmn, thanks for the reply but yesterday I've installed on the router a 9db omnidirectional antenna and I've checked the signal with the phone, it barely go over 30mt without any wall  Undecided
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!