Author

Topic: [ANN][DGC] Digitalcoin | Multi-algo & Masternodes | Established 2013 - page 237. (Read 523584 times)

newbie
Activity: 28
Merit: 0
Is it possible for someone to make a pool that we can set a percentage that can be sent to baritus for bounties and such? I know at some pools you can set a donation percentage to be kept by the pool so it would just be somehow changing that so it would be sent to baritus.
sr. member
Activity: 309
Merit: 250
Note that rejects on local shares that you submit to a p2pool are not usually a big deal - everyone gets about 20% rejects (give or take) on average but the reward is split proportionally so it won't hurt you much in the payout.

If you're getting 30%+ rejects that is likely a miner configuration issue
yeah... you have a very good p2pool, but you are growing too fast - though you are near to the 51% - so far as i can see

you cannot stop the growth of your pool, because noone has to register?

i have changed the pool (~16 mhash), to do what i can do for the safety of the coin...
sr. member
Activity: 447
Merit: 250
Note that rejects on local shares that you submit to a p2pool are not usually a big deal - everyone gets about 20% rejects (give or take) on average but the reward is split proportionally so it won't hurt you much in the payout.

If you're getting 30%+ rejects that is likely a miner configuration issue
OK.  Take a look at the graph for my miner, it shows all rejects.  None of the accepts are showing and there are no more payments since I made the change.
DK57tvcHSwXDqqP9NnxwBKTKFu9rudzftR I cant link straight to my miner, but that gets you to the page.  LOL, you already know this.
hero member
Activity: 1395
Merit: 505
Note that rejects on local shares that you submit to a p2pool are not usually a big deal - everyone gets about 20% rejects (give or take) on average but the reward is split proportionally so it won't hurt you much in the payout.

If you're getting 30%+ rejects that is likely a miner configuration issue
sr. member
Activity: 447
Merit: 250
My p2pool has been up continuously and averaging about 100 mh/s.  Always happy to take new miners we're running at less than half CPU utilization so plenty of room to grow.

http://54.227.253.120:9500/static/

I've just directed a miner your way - cheers!

Going from your instructions +0.00116414 is fine for one of my rigs 2 x 7970, though how do I calculate for my other - is there a formula?

Here is a general guideline for where to set that difficulty:

Hash Rate (KH/s)         Difficulty
                 1                  +0.00000116
                 5                  +0.00000582
                10                 +0.00001164
                50                 +0.00005821
                100               +0.00011641
                250               +0.00029103
                500               +0.00058207
                750               +0.00087310
                1000              +0.00116414
                1600              +0.001862624
Would you calculate the setting for all GPU's running on the pay-address or per each individual GPU?
When I try doing this, I end up with a lot of accepts and about 20%+ rejects, but on the graph site.  Now, with only one 7950 running there are no accepts at all, it shows all rejects, but on my screen, I have over 80% accepts.
DK57tvcHSwXDqqP9NnxwBKTKFu9rudzftR

I have tried several different combinations of numbers, and from 1-3 miners.
hero member
Activity: 686
Merit: 500
Bitbuy
hero member
Activity: 1395
Merit: 505
Does anyone know where I can get the P2Pool source for Digitalcoin? I'd like to run my own P2Pool locally (For myself to mine on, not as a public pool).
If it's not available, could one of the owners that are running a P2Pool share their source?
I would be very grateful. Thanks!

Hello,

You'd have to use the regular P2Pool source and compile the digitalcoind daemon.

p2pool git: https://github.com/forrestv/p2pool

networks.py add:

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,
    )

bitcoin/networks.py add:

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://dgc.p2pool.nl/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://dgc.p2pool.nl/address/',
        SANE_TARGET_RANGE=(2**256//100000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    )



legendary
Activity: 966
Merit: 1052
Does anyone know where I can get the P2Pool source for Digitalcoin? I'd like to run my own P2Pool locally (For myself to mine on, not as a public pool).
If it's not available, could one of the owners that are running a P2Pool share their source?
I would be very grateful. Thanks!

Hello,

You'd have to use the regular P2Pool source and compile the digitalcoind daemon.

p2pool git: https://github.com/forrestv/p2pool
hero member
Activity: 686
Merit: 500
Bitbuy
Does anyone know where I can get the P2Pool source for Digitalcoin? I'd like to run my own P2Pool locally (For myself to mine on, not as a public pool).
If it's not available, could one of the owners that are running a P2Pool share their source?
I would be very grateful. Thanks!
full member
Activity: 210
Merit: 110
God rest Donnie's soul.
hero member
Activity: 1395
Merit: 505
sr. member
Activity: 255
Merit: 250
full member
Activity: 210
Merit: 110
God rest Donnie's soul.
legendary
Activity: 2730
Merit: 7065
How many stales are you guys getting on digitalcoinpool.com? Because I am at 33% on any of my rigs... Thats just too much.. Back to P2P pool for now!
hero member
Activity: 1395
Merit: 505
Here is some info on how p2pool payouts work.  It is an interesting read

http://p2pool.me/payment-system/
legendary
Activity: 966
Merit: 1052
How is http://www.digitalcoinpool.com/ running for you, it looks like it also pays to little like other pools on this software. My payout in the end was 0.4 when i had like 7-10% of pool power.

It takes time for PPLNS to update your stats. Wait about 30min-1hr and post again if they don't look right.
newbie
Activity: 51
Merit: 0
How is http://www.digitalcoinpool.com/ running for you, it looks like it also pays to little like other pools on this software. My payout in the end was 0.4 when i had like 7-10% of pool power.

sr. member
Activity: 447
Merit: 250
My p2pool has been up continuously and averaging about 100 mh/s.  Always happy to take new miners we're running at less than half CPU utilization so plenty of room to grow.

http://54.227.253.120:9500/static/

I've just directed a miner your way - cheers!

Going from your instructions +0.00116414 is fine for one of my rigs 2 x 7970, though how do I calculate for my other - is there a formula?

Here is a general guideline for where to set that difficulty:

Hash Rate (KH/s)         Difficulty
                 1                  +0.00000116
                 5                  +0.00000582
                10                 +0.00001164
                50                 +0.00005821
                100               +0.00011641
                250               +0.00029103
                500               +0.00058207
                750               +0.00087310
                1000              +0.00116414
                1600              +0.001862624
Would you calculate the setting for all GPU's running on the pay-address or per each individual GPU?
member
Activity: 81
Merit: 10

Haha just noticed this....I have no idea who digi.cryptcoins.net is, but has nothing to do with me or scryptmining.com Smiley

Hopefully he has better luck than I have at running his pool though! Sad

I've been using http://next.afraid.org:8119/static/ with great success, fast and reliable.
sr. member
Activity: 448
Merit: 250

Haha just noticed this....I have no idea who digi.cryptcoins.net is, but has nothing to do with me or scryptmining.com Smiley

Hopefully he has better luck than I have at running his pool though! Sad
Jump to: