Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 7005. (Read 9723475 times)

newbie
Activity: 38
Merit: 0
any working  windows wallet ?
There is a link somewhere in the thread (page 3 if I remember right).
legendary
Activity: 1176
Merit: 1036
Dash Developer
OK... unlimited money supply. Sad

 Well done.

Switching to something else.

You mean... mining has been useless so far?
Almost. Seems like developer focused so much on the new algos that he forgot to set the coin properly  Undecided
A fork in the future might help ...

Nope, it's limited to 84 million.

Unfortunately, we don't see this in the code.

I just saw that message. I'll fix that asap

Should we stop mining? Our already mined coins (90 so far in my case) will be valid after fixing the code?

No, you can keep mining. Everything will still be valid.
hero member
Activity: 770
Merit: 500
any working  windows wallet ?
newbie
Activity: 38
Merit: 0

Should we stop mining? Our already mined coins (90 so far in my case) will be valid after fixing the code?
The coins will be valid. Up to you weather keep mining or not.
legendary
Activity: 1176
Merit: 1036
Dash Developer
OK... unlimited money supply. Sad

 Well done.

Switching to something else.

You mean... mining has been useless so far?
Almost. Seems like developer focused so much on the new algos that he forgot to set the coin properly  Undecided
A fork in the future might help ...

Nope, it's limited to 84 million.

Unfortunately, we don't see this in the code.

I just saw that message. I'll fix that asap
legendary
Activity: 1232
Merit: 1001
OK... unlimited money supply. Sad

 Well done.

Switching to something else.

You mean... mining has been useless so far?
Almost. Seems like developer focused so much on the new algos that he forgot to set the coin properly  Undecided
A fork in the future might help ...

Nope, it's limited to 84 million.

Unfortunately, we don't see this in the code.
legendary
Activity: 1176
Merit: 1036
Dash Developer
Is it me or difficulty is stuck at 1.00 for the last 2 hours? The network is around 100Mh/s, and we are solving blocks faster than every 5 minutes, shouldn't diff be higher?

I notice this too.  Why isn't diff increasing?


- 5 minute block target
- 6 Confirms per transaction
- Difficulty re-targets every 60 minutes
- Block reward controlled by moores law ( 1111 / (diff+1 ^ 2))


Opps, updated that. It's every 576.0 blocks.
newbie
Activity: 38
Merit: 0
OK... unlimited money supply. Sad

 Well done.

Switching to something else.

You mean... mining has been useless so far?
Almost. Seems like developer focused so much on the new algos that he forgot to set the coin properly  Undecided
A fork in the future might help ...
legendary
Activity: 1232
Merit: 1001
OK... unlimited money supply. Sad

 Well done.

Switching to something else.

You mean... mining has been useless so far?

Pretty much.  How have you done?
legendary
Activity: 1176
Merit: 1036
Dash Developer
The Small Time Miner XCoin Pool
* http://xco.smalltimeminer.com
* Pplns Payouts. Full Block Rewards Rewards Including Tx Fees, 1% Pool Fee.
* Stratum Only: stratum+tcp://xco.smalltimeminer.com:3350

Pool should work, completely untested at this point, wasn't a miner available at the time and I won't even be able to test it myself for several hours, difficulty is still low so solo mining is probably the best option yet but its running if anyone wants to try it out.

Getting 100% rejects.

Thanks for checking it for me, I'll have to fix it later. Sorry folks.

I think I have it fixed now folks if anyone wants to try again. Thanks

Still reject. This is a CPU coin.


It's working for me! I added it to the list of pools.
legendary
Activity: 1232
Merit: 1001
OK... unlimited money supply. Sad

 Well done.

Switching to something else.
newbie
Activity: 52
Merit: 0
legendary
Activity: 1232
Merit: 1001
- Block reward controlled by moores law ( 1111 / (diff+1 ^ 2))

This is not working, right? I'm getting 500 coins as reward
see all function in source )))

Code:
 
 int64 static GetBlockValue(int nBits, int64 nFees)
{
    double dDiff =
        (double)0x0000ffff / (double)(nBits & 0x00ffffff);

    int64 nSubsidy = (1111 / (pow((dDiff+1),2)));
    if (nSubsidy > 500) nSubsidy = 500;
    if (nSubsidy < 1) nSubsidy = 1;
    nSubsidy *= COIN;

    return nSubsidy + nFees;
}

so i guess we have unlimited coins, dind't find your 84 mio max coins there !!!!!!!

Code:
static const int64 MAX_MONEY = 84000000 * COIN;
--> COINS that can be max in wallet/transaction - this has almost nothing to do with the cap, because the COIN cap is calculated from the blockvalue!!

Code:
if (txout.nValue > MAX_MONEY)
            return state.DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));

that checks transactions for MAX_MONEY but there isn't any check that prevents us from mining more than 84 mio coins !!



face palm (in dev face)
hero member
Activity: 784
Merit: 1005
Is it me or difficulty is stuck at 1.00 for the last 2 hours? The network is around 100Mh/s, and we are solving blocks faster than every 5 minutes, shouldn't diff be higher?

I notice this too.  Why isn't diff increasing?


- 5 minute block target
- 6 Confirms per transaction
- Difficulty re-targets every 60 minutes
- Block reward controlled by moores law ( 1111 / (diff+1 ^ 2))


It hasn't changed for the last 3-4 hours
sr. member
Activity: 371
Merit: 250
- Block reward controlled by moores law ( 1111 / (diff+1 ^ 2))

This is not working, right? I'm getting 500 coins as reward
see all function in source )))

Code:
 
 int64 static GetBlockValue(int nBits, int64 nFees)
{
    double dDiff =
        (double)0x0000ffff / (double)(nBits & 0x00ffffff);

    int64 nSubsidy = (1111 / (pow((dDiff+1),2)));
    if (nSubsidy > 500) nSubsidy = 500;
    if (nSubsidy < 1) nSubsidy = 1;
    nSubsidy *= COIN;

    return nSubsidy + nFees;
}

so i guess we have unlimited coins, dind't find your 84 mio max coins there !!!!!!!

Code:
static const int64 MAX_MONEY = 84000000 * COIN;
--> COINS that can be max in wallet/transaction - this has almost nothing to do with the cap, because the COIN cap is calculated from the blockvalue!!

Code:
if (txout.nValue > MAX_MONEY)
            return state.DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));

that checks transactions for MAX_MONEY but there isn't any check that prevents us from mining more than 84 mio coins !!

member
Activity: 98
Merit: 10
Is it me or difficulty is stuck at 1.00 for the last 2 hours? The network is around 100Mh/s, and we are solving blocks faster than every 5 minutes, shouldn't diff be higher?

I notice this too.  Why isn't diff increasing?


- 5 minute block target
- 6 Confirms per transaction
- Difficulty re-targets every 60 minutes
- Block reward controlled by moores law ( 1111 / (diff+1 ^ 2))
legendary
Activity: 1232
Merit: 1001
Is it me or difficulty is stuck at 1.00 for the last 2 hours? The network is around 100Mh/s, and we are solving blocks faster than every 5 minutes, shouldn't diff be higher?

I notice this too.  Why isn't diff increasing?
hero member
Activity: 784
Merit: 1005
legendary
Activity: 1232
Merit: 1001
hero member
Activity: 784
Merit: 1005
Is it me or difficulty is stuck at 1.00 for the last 2 hours? The network is around 100Mh/s, and we are solving blocks faster than every 5 minutes, shouldn't diff be higher?
Jump to: