Hello Everyone,
I've installed
https://github.com/narken/p2pool-altcoins so i could run several alt-coin like Litecoin, Namecoin, BBQCoin, Terracoin, Novacoin, etc...
I did install it without problems on windows 7 but when i started it i have got the following:
2014-02-04 14:06:39.315217 p2pool (version 11.4-31-g19b3dd0)
2014-02-04 14:06:39.316300
2014-02-04 14:06:39.316411 Testing bitcoind RPC connection to '
http://127.0.0.1:10332/' with username 'MasterUser'...
2014-02-04 14:06:39.385996 ...success!
2014-02-04 14:06:39.386762 Current block hash: 71e2062395badb6901497039fd25ce405245543754611b169876f8f1a02d4626
2014-02-04 14:06:39.390741 Current block height: 508440
2014-02-04 14:06:39.390824
2014-02-04 14:06:39.390912 Testing bitcoind P2P connection to '127.0.0.1:10333'.
..
And that's it , the p2pool-altcoins program justs hangs in there waiting... and waiting....My Litecoin wallet is synced and the conf file is:server=1
listen=1
daemon=1
rpcuser=MasterUser
rpcpassword=SomeLongPassword
maxconnections=30
rpcport=10332
port=10333
rpcallowip=127.0.0.1
rpcconnect=127.0.0.1
addnode=70.71.0.93
addnode=190.191.141.145
addnode=75.135.81.210
addnode=69.57.165.193
addnode=168.61.25.9
addnode=71.171.90.204
addnode=172.219.27.30
addnode=88.60.62.215
addnode=124.170.3.229
p2pool-altcoins networks.py litecoin configuration is: litecoin=math.Object(
P2P_PREFIX='fbc0b6db'.decode('hex'),
P2P_PORT=9333,
ADDRESS_VERSION=48,
RPC_PORT=9332,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'litecoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//840000,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=150, # s
SYMBOL='LTC',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Litecoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Litecoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.litecoin'), 'litecoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='
http://explorer.litecoin.net/block/',
ADDRESS_EXPLORER_URL_PREFIX='
http://explorer.litecoin.net/address/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF=2**16,
),
Does anyone know what could be the reason for p2pool-altcoins halt?Best Regards