Pages:
Author

Topic: [DBL] Doubloons: Pirate Currency - page 8. (Read 139884 times)

member
Activity: 108
Merit: 10
blockexp.info
newbie
Activity: 41
Merit: 0
November 18, 2015, 01:57:32 PM
block explorer?
legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
November 12, 2015, 04:37:55 PM
On my AWS node:
Code:
./doubloons-cli getinfo
{
    "version" : 100202,
    "protocolversion" : 70003,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 977297,
    "timeoffset" : 0,
    "connections" : 11,
    "proxy" : "",
    "difficulty" : 2.86842519,
    "testnet" : false,
    "keypoololdest" : 1442694529,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "relayfee" : 0.00100000,
    "errors" : ""
}
newbie
Activity: 41
Merit: 0
November 12, 2015, 02:32:09 PM
Doubloons network is alive?
wallet not sync about 14 hours. last block 977291, but have 6 connections.
legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
newbie
Activity: 41
Merit: 0
November 10, 2015, 02:08:06 PM
where is working pool?
legendary
Activity: 1456
Merit: 1018
HoneybadgerOfMoney.com Weed4bitcoin.com
November 01, 2015, 08:12:47 PM
Yarrr!
Take it all - give nothing back!


Aye yay yai  Cry too much money lost.  I spent 16 LTC for a net worth value of 1.65 LTC now.  I was trying to consolidate but this is just too painful to shed away if  I turn this back into LTC.

What is the reason or benefit for DBL in your eyes rather than to earn it and sell it?
legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
October 31, 2015, 05:37:01 AM
Yarrr!
Take it all - give nothing back!
sr. member
Activity: 328
Merit: 250
October 30, 2015, 05:16:53 PM
DOGE is just doge...
and here is the sea...  a real pirate must keep a word he gave to other gentlemen in the same boat with him.
legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
October 30, 2015, 05:05:31 PM
I`m not sure, remember about Dogecoin Smiley
I can force it on incoming v13 (0.10.2 LTC based), but it will all depend on miners, and probably mining will stop...
Also miners/node owners can not update client to new version and/or it will fork badly.
sr. member
Activity: 328
Merit: 250
October 30, 2015, 04:57:51 PM
Well, this is one of first LTC clones that are live so long Tongue
If we change rules now, it require hard fork.
At current block we have about 6`500`000 coins and we mine around 292`000 new coins monthly.


yes, you're right, rules must not be changed, and a 8 million limit is a primary rule here

that was declared in May, 2013, right?

I believe you agree that it's not correct to tell investors now: 'sorry, we meant max_money in a single transaction' .
legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
October 30, 2015, 03:31:13 PM
Well, this is one of first LTC clones that are live so long Tongue
If we change rules now, it require hard fork.
At current block we have about 6`500`000 coins and we mine around 292`000 new coins monthly.
sr. member
Activity: 328
Merit: 250
October 30, 2015, 11:33:12 AM
Original repo is gone, so I use last (first) available:

https://github.com/RazorLove/doubloons/blob/master/src/main.h
Code:
static const int64 MAX_MONEY = 8000000 * COIN; 
MAX_MONEY tells how many coins can be send in single transaction, it is not limit of coins generated.

Coins generation limit is enforced in subsidy function:
https://github.com/RazorLove/doubloons/blob/master/src/main.cpp
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 6.77 * COIN;


    if(nHeight > 10519200) // no block reward after 5 years
        nSubsidy = 0;

    return nSubsidy + nFees;
}

static int64 nTargetTimespan = 0.5 * 24 * 60 * 60; // 43,200 seconds (12 hours)
static int64 nTargetSpacing = 60; // 60 seconds (1 minute)
static int64 nInterval = nTargetTimespan / nTargetSpacing; // 720 blocks
For 60s block, mining will continue for 20 years (10519200/60/24*365=~20) and it will be 71 214 984 total DBL mined.
I`m not sure, where error starts.
For 5 years of mining (about 2 628 000 blocks) total amount of DBL mined would be 17 791 560.
If we want to mine top 8 000 000 DBL we have to cut mining on block 1 181 683 and it take about 2.2 years to mine all coins. Current block number is 964 993, so it will be around 150 days of mining left if we do it.


thank you

that's quite important:
if DBL is not a scam, there should be a 8 million limit declared initially (OP) :

- Digging can continue until 8 million coins or 5 years, whichever comes first.

legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
October 30, 2015, 10:15:03 AM
Original repo is gone, so I use last (first) available:

https://github.com/RazorLove/doubloons/blob/master/src/main.h
Code:
static const int64 MAX_MONEY = 8000000 * COIN; 
MAX_MONEY tells how many coins can be send in single transaction, it is not limit of coins generated.

Coins generation limit is enforced in subsidy function:
https://github.com/RazorLove/doubloons/blob/master/src/main.cpp
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 6.77 * COIN;


    if(nHeight > 10519200) // no block reward after 5 years
        nSubsidy = 0;

    return nSubsidy + nFees;
}

static int64 nTargetTimespan = 0.5 * 24 * 60 * 60; // 43,200 seconds (12 hours)
static int64 nTargetSpacing = 60; // 60 seconds (1 minute)
static int64 nInterval = nTargetTimespan / nTargetSpacing; // 720 blocks
For 60s block, mining will continue for 20 years (10519200/60/24*365=~20) and it will be 71 214 984 total DBL mined.
I`m not sure, where error starts.
For 5 years of mining (about 2 628 000 blocks) total amount of DBL mined would be 17 791 560.
If we want to mine top 8 000 000 DBL we have to cut mining on block 1 181 683 and it take about 2.2 years to mine all coins. Current block number is 964 993, so it will be around 150 days of mining left if we do it.
sr. member
Activity: 328
Merit: 250
October 30, 2015, 03:33:45 AM
8mln coins is not supressed (it is max coins in single tx), after block 10519200 there will be reward 0 DBL.

- 6.77 coins per block, just like 6.77gms of gold in a real doubloon!
- Digging can continue until 8 million coins or 5 years, whichever comes first.

that's unclear
could you please provide more information?
legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
October 26, 2015, 05:32:47 AM
8mln coins is not supressed (it is max coins in single tx), after block 10519200 there will be reward 0 DBL.
sr. member
Activity: 328
Merit: 250
October 25, 2015, 09:35:41 AM
https://github.com/Rav3nPL/doubloons-0.10/blob/master-0.10/src/chainparams.cpp
lines 151, 152
Block time: 1 minute
Retarget: 12 hours

very, very strange.
for example today about Retarget:
Block            Time                           Difficulty
959372   10/23/2015 18:09:12   4,6368
959371   10/23/2015 18:07:05   4,6368
959370   10/23/2015 17:58:01   4,6368
959369   10/23/2015 17:53:23   5,1005

959368   10/23/2015 17:51:16   5,1005
………………      
959341   10/23/2015 13:49:36   5,1005
959340   10/23/2015 13:42:41   5,1005
959339   10/23/2015 13:41:49   5,6105

959338   10/23/2015 13:41:20   5,6105
………………      
959317   10/23/2015 10:49:24   5,6105
959313   10/23/2015 10:45:53   5,6105
959305   10/23/2015 10:28:40   6,1716

959299   10/23/2015 10:25:51   6,1716
959292   10/23/2015 10:13:12   6,1716
959289   10/23/2015 10:11:17   6,1716

and finding block not one per minute depending on the statistics


- 6.77 coins per block, just like 6.77gms of gold in a real doubloon!
- Digging can continue until 8 million coins or 5 years, whichever comes first.

so 959,372 blocks * 6.77 = 6,494,948 available supply now, right?
then 8 mln coins "comes first" and after that staking, or what?
hero member
Activity: 553
Merit: 500
October 23, 2015, 04:27:24 PM
this coin is paying well - 100 MH/s will get you .00018 BTC/MH/day which is better than most multi-pools.
legendary
Activity: 1361
Merit: 1003
Don`t panic! Organize!
October 23, 2015, 04:19:46 PM
It has to be shown in graph for some period and timestamps checked.
I did not see any troubles, network is not forking, so it should be AOK.

edit: also there are limits of regulations, so if there was major miner connected for some time it will take few re-targets to be back at 1 min
newbie
Activity: 41
Merit: 0
October 23, 2015, 01:34:24 PM
https://github.com/Rav3nPL/doubloons-0.10/blob/master-0.10/src/chainparams.cpp
lines 151, 152
Block time: 1 minute
Retarget: 12 hours

very, very strange.
for example today about Retarget:
Block            Time                           Difficulty
959372   10/23/2015 18:09:12   4,6368
959371   10/23/2015 18:07:05   4,6368
959370   10/23/2015 17:58:01   4,6368
959369   10/23/2015 17:53:23   5,1005

959368   10/23/2015 17:51:16   5,1005
………………      
959341   10/23/2015 13:49:36   5,1005
959340   10/23/2015 13:42:41   5,1005
959339   10/23/2015 13:41:49   5,6105

959338   10/23/2015 13:41:20   5,6105
………………      
959317   10/23/2015 10:49:24   5,6105
959313   10/23/2015 10:45:53   5,6105
959305   10/23/2015 10:28:40   6,1716

959299   10/23/2015 10:25:51   6,1716
959292   10/23/2015 10:13:12   6,1716
959289   10/23/2015 10:11:17   6,1716

and finding block not one per minute depending on the statistics
Pages:
Jump to: