Bitcoin Forum
May 24, 2024, 07:54:48 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 [62] 63 64 65 66 »
1221  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] INFINITECOIN - UPDATE TO 1.8.8 visit INFINITECOIN.COM on: January 15, 2015, 05:19:05 PM
A fee on http://crypto.office-on-the.net:9844 p2pool now is 0%
1222  Alternate cryptocurrencies / Announcements (Altcoins) / Re: New Altcoin - HELLASCOIN - Need a hug for hashrate on: January 15, 2015, 04:55:57 PM
A fee on http://crypto.office-on-the.net:30201 p2pool now is 0%
1223  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof on: January 15, 2015, 04:36:40 PM
A fee on http://crypto.office-on-the.net:9173 p2pool now is 0%
1224  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.8.6.6] Hirocoin - X11 - Hardfork at Block 290,000 [Complete] - *New Dev* on: January 14, 2015, 06:02:39 PM
A fee on http://crypto.office-on-the.net:9408 p2pool now is 0%
1225  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Global Denomination (GDN) X11 DigiShield on: January 14, 2015, 05:13:55 PM
A fee on http://crypto.office-on-the.net:8347 p2pool now is 0%
1226  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] New Crypto Currency FRANKO [w/ OPENSOURCE FRK ATM!][NEW WEBSITE Design] on: January 13, 2015, 07:45:44 PM
A fee on http://crypto.office-on-the.net:8901 p2pool now is 0%
1227  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]: a coin for a global band! Talking v2. Join! 80+ songs on: January 13, 2015, 06:39:02 PM
A fee on http://crypto.office-on-the.net:36363 p2pool now is 0%
1228  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [EMD] Emerald Crypto Official Thread New Client v. 8.5.1 Update Now! on: January 12, 2015, 09:16:36 PM
A fee on http://crypto.office-on-the.net:12125 p2pool now is 0%
1229  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [EMD] Emerald Crypto Official Thread New Client v. 8.5.1 Update Now! on: January 12, 2015, 08:59:37 PM
Hi there i have been recently mining emerald and have been getting a high number of blocks orphaned. from the past 59 blocks 43 of them were orphaned. i am running 8.5.1 already.
Maybe it happened because I mined Emerald with power of about 2 Gh/s at the same time. It was in the last days of 2014 and the first days of 2015. Within a few days I received an almost continuous sequence of blocks.
1230  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DRK] Darkcoin | First Anonymous Coin | Inventor of X11, DGW and Darksend | Instant TX on: January 12, 2015, 08:37:32 PM
My p2pool: http://crypto.office-on-the.net:7903
0% fee
1231  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DBL] Doubloons: Pirate Currency on: January 12, 2015, 08:16:00 PM
How it is possible, that you not have any peers connected? What code ure using?

edit: sorry, my node was offline...

Code:
    doubloons=math.Object(
        PARENT=networks.nets['doubloons'],
        SHARE_PERIOD=5, # seconds target spacing
        CHAIN_LENGTH=12*60*60//5, # shares
        REAL_CHAIN_LENGTH=12*60*60//5, # shares
        TARGET_LOOKBEHIND=20, # blocks
        SPREAD=30, # blocks
        IDENTIFIER='fe43a6b9f6924a10'.decode('hex'),
        PREFIX='fe8f19aba6d7729a'.decode('hex'),
        P2P_PORT=8346,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=8345,
        BOOTSTRAP_ADDRS='p2pool-eu.gotgeeks.com p2pool-us.gotgeeks.com rav3n.dtdns.net doge.dtdns.net pool.hostv.pl p2pool.org p2pool.gotgeeks.com p2pool.dtdns.net solidpool.org crypto.office-on-the.net'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

Code:
    doubloons=math.Object(
        P2P_PREFIX='fcd9b7dd'.decode('hex'),
        P2P_PORT=1336,
        ADDRESS_VERSION=24,
        RPC_PORT=1337,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'doubloons address' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 1*100000000 >> (height + 1)//1080000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30, # s targetspacing
        SYMBOL='DBL',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'doubloons') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Doubloons/') if platform.system() == 'Darwin' else os.path.expanduser('~/.doubloons'), 'doubloons.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://explorer.doubloons.net/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://explorer.doubloons.net/address/',
        TX_EXPLORER_URL_PREFIX='http://explorer.doubloons.net/transaction/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=0.001e8,
    ),
1232  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DBL] Doubloons: Pirate Currency on: January 12, 2015, 07:52:59 AM
My old p2pool: http://crypto.office-on-the.net:8345
0% fee.
1233  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] Extremecoin.org (EXC) BBQcoin.org (BQC) (Omega6) Updates on: January 11, 2015, 06:47:20 PM
My old BBQcoin (BQC) p2pool: http://crypto.office-on-the.net:8900
0% fee
1234  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: January 11, 2015, 06:43:48 PM
My old p2pool: http://crypto.office-on-the.net:8900
0% fee
1235  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: BQC (bbqcoin) Official websites on: January 11, 2015, 06:33:45 PM
My old p2pool: http://crypto.office-on-the.net:8900
0% fee.
1236  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AUR] Auroracoin - a cryptocurrency for Iceland on: January 11, 2015, 06:10:43 PM
My old p2pool: http://crypto.office-on-the.net:12347
Fee 0%
1237  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof on: January 11, 2015, 05:39:49 PM
Is there any working Execoin pools?
http://crypto.office-on-the.net:9173
1238  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] [POOL] New Execoin P2Pool Node in italy on: January 11, 2015, 05:30:24 PM
p2pool dead
1239  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ʉ Umbrella | Insured Cryptocurrencies | Umbrella-LTC | Litecoin Insurance on: December 28, 2014, 01:44:02 PM
The wallet does not synchronize on Linux.
Please show the results of the getpeerinfo command.
1240  Local / Майнеры / Re: [P2POOL] п2пулы на crypto.office-on-the.net (fee 0.5) on: December 25, 2014, 05:30:29 AM
-CRYPT: PoW стадия закончена.
Pages: « 1 ... 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 [62] 63 64 65 66 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!