Bitcoin Forum
April 18, 2024, 09:00:02 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: .
.
.

Pages: « 1 ... 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 67 68 69 70 71 72 73 74 [75] 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 ... 541 »
  Print  
Author Topic: [ANN][PIVX] - PRIVATE INSTANT VERIFIED TRANSACTION - PROOF OF STAKE - ZEROCOIN  (Read 782149 times)
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
March 27, 2016, 11:22:59 PM
 #1481

Interesting. I prefer block frequency and this is what I use:

block frequency in seconds = 2^32 * coin_difficulty / (hashrate_in_Mhs * 1e6)

And it appears you were right about the number 256 instead of 200, I'm not sure why I came up with 200 when I did my calculation long ago.

Let's see Quarkcoin with its current difficulty (228):

2^32 * 228 / (100 * 1e6) = 9792 seconds per block with 100 Mh/s which is obviously wrong.

2^32 * 228 / 256 / (100 * 1e6) = 38.2 seconds per blocks which is the correct number.

Now let's see DNET:

2^32 * 113.43 / (100 * 1e6) = 4871 seconds or 81 minutes which is correct so there's no need for a correction. (with a correction 100 Mh/s would get you a block every 19 seconds.)

Not your keys, not your coins!
1713430802
Hero Member
*
Offline Offline

Posts: 1713430802

View Profile Personal Message (Offline)

Ignore
1713430802
Reply with quote  #2

1713430802
Report to moderator
1713430802
Hero Member
*
Offline Offline

Posts: 1713430802

View Profile Personal Message (Offline)

Ignore
1713430802
Reply with quote  #2

1713430802
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713430802
Hero Member
*
Offline Offline

Posts: 1713430802

View Profile Personal Message (Offline)

Ignore
1713430802
Reply with quote  #2

1713430802
Report to moderator
1713430802
Hero Member
*
Offline Offline

Posts: 1713430802

View Profile Personal Message (Offline)

Ignore
1713430802
Reply with quote  #2

1713430802
Report to moderator
1713430802
Hero Member
*
Offline Offline

Posts: 1713430802

View Profile Personal Message (Offline)

Ignore
1713430802
Reply with quote  #2

1713430802
Report to moderator
fredeq
Legendary
*
Offline Offline

Activity: 1537
Merit: 1005


View Profile WWW
March 28, 2016, 12:39:55 AM
 #1482

Interesting. I prefer block frequency and this is what I use:

block frequency in seconds = 2^32 * coin_difficulty / (hashrate_in_Mhs * 1e6)

And it appears you were right about the number 256 instead of 200, I'm not sure why I came up with 200 when I did my calculation long ago.

Let's see Quarkcoin with its current difficulty (228):

2^32 * 228 / (100 * 1e6) = 9792 seconds per block with 100 Mh/s which is obviously wrong.

2^32 * 228 / 256 / (100 * 1e6) = 38.2 seconds per blocks which is the correct number.

Now let's see DNET:

2^32 * 113.43 / (100 * 1e6) = 4871 seconds or 81 minutes which is correct so there's no need for a correction. (with a correction 100 Mh/s would get you a block every 19 seconds.)


If we would update the code with my suggestion, then the difficulty would already be multiplied by 256, internally by the wallet and the equation would be true again:
2^24 * 113.43 * 256 / (100 * 1e6) = 4871 seconds

I only want this to be done by the wallet internally, so externally every quark coin uses the same formula.
In other words, I think it would be best to return difficulty (in comparison to current) multiplied by 256, so any equation used by 3rd party includes only the 2^24 multiplier, as already used by other Quark coins.

https://whattomine.com - Check what to mine Smiley
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
March 28, 2016, 01:14:09 AM
 #1483

If we would update the code with my suggestion, then the difficulty would already be multiplied by 256, internally by the wallet and the equation would be true again:
2^24 * 113.43 * 256 / (100 * 1e6) = 4871 seconds

I only want this to be done by the wallet internally, so externally every quark coin uses the same formula.
In other words, I think it would be best to return difficulty (in comparison to current) multiplied by 256, so any equation used by 3rd party includes only the 2^24 multiplier, as already used by other Quark coins.

But your proposition, (meaning difficulty should be multiplied by 256) only works for a handful of coins. Other than that virtually every single non-quark coin out there has the correct difficulty which isn't divided by 256 for no reason.

DNET is one of those correct coins so to me at least it seems your proposition would actually break generic profitability calculations that ~98% of coins use.

Not your keys, not your coins!
q327K091
Legendary
*
Offline Offline

Activity: 1792
Merit: 1010


View Profile
March 28, 2016, 01:38:43 AM
 #1484

update: MN's revenue stop due to me not updating to the latest git master, doing it right now, good I caught it fast, I see LOTs of codebase changes...
fredeq
Legendary
*
Offline Offline

Activity: 1537
Merit: 1005


View Profile WWW
March 28, 2016, 01:44:45 AM
 #1485

Yes I get your point, just saying that in my opinion it would be good to be consistent within Quark algo.
Just like Cryptonight coins are all consistent without 2^32 multiplier.

I understand there are no strong arguments one way or another.
If the devs here decide to stick to 2^32, instead of 2^24, then I will adapt my code Wink

https://whattomine.com - Check what to mine Smiley
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
March 28, 2016, 02:05:16 AM
 #1486

Yes I get your point, just saying that in my opinion it would be good to be consistent within Quark algo.
Just like Cryptonight coins are all consistent without 2^32 multiplier.

I understand there are no strong arguments one way or another.
If the devs here decide to stick to 2^32, instead of 2^24, then I will adapt my code Wink

Okay, I finally understand your issue and your reasoning.

But there's no consistency within the quark algo if you take into account Joincoin's quark algorithm or Amsterdamcoin (I'm not 100% sure about the latter though).

Besides, every non-quark algo (x11, x13, x15, nist5, groestl, whirl, luffa, keccak, qubit, neoscrypt, both lyra2, all flavor of blake, etc) uses the same difficulty system (with a tiny number of exceptions like Eth, Scrypt-Jane) so I consider those few quark algo coins (MUE, Quark, SRC) to have a buggy difficulty reporting method.

So I think diff shouldn't be based on a per algo basis because it's not 100% consistent.

Not your keys, not your coins!
muchoman
Sr. Member
****
Offline Offline

Activity: 465
Merit: 250


View Profile
March 28, 2016, 11:29:09 AM
 #1487

since updating all nodes to 1.0.2.1 and moving remaining clearnet nodes to externalip-onion hostname addresses, I havent seen any payments since 3/25. they list status enabled, would a full chain delete and resync be the best fix or should I send all coins to new collaterall addresses and do them over? ssh into nodes and querying status locally shows masternode successfully started message

Same problem here.
jakiman
Legendary
*
Offline Offline

Activity: 1638
Merit: 1011


jakiman is back!


View Profile
March 28, 2016, 11:59:16 AM
 #1488

since updating all nodes to 1.0.2.1 and moving remaining clearnet nodes to externalip-onion hostname addresses, I havent seen any payments since 3/25. they list status enabled, would a full chain delete and resync be the best fix or should I send all coins to new collaterall addresses and do them over? ssh into nodes and querying status locally shows masternode successfully started message

Same problem here.

Mine took about 30 hours before receiving first payment after the upgrade. It's more frequent from then on.

waffles99
Sr. Member
****
Offline Offline

Activity: 275
Merit: 250


View Profile
March 28, 2016, 05:37:17 PM
 #1489

Most of them auto-resolved eventually. Have 2 that are missing and will delete cache to try again
malyan
Full Member
***
Offline Offline

Activity: 153
Merit: 100



View Profile
March 28, 2016, 05:45:30 PM
 #1490

there is a chance that the price will rise more?

((^_^))
EleanorZ
Sr. Member
****
Offline Offline

Activity: 359
Merit: 270



View Profile
March 28, 2016, 06:09:52 PM
 #1491

there is a chance that the price will rise more?

I mean, no one knows the future, but DNET has active devs, a "slow and steady" roadmap, and an engaged community. Those are all good signs for the long term. No one can make any promises, but I know I'm enjoying the low prices--easier to spin off a few more masternodes.
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
March 28, 2016, 07:35:43 PM
 #1492

there is a chance that the price will rise more?

Eventually.

But I think in the near future it will probably drop lower or stay around the current level.
The top 3 addresses on Bittrex combined have 10% of the total available supply or the equivalent of 198 masternodes.
That means the distribution is poor now and that price manipulation will likely happen in the future if it isn't happening already.

Not your keys, not your coins!
jakiman
Legendary
*
Offline Offline

Activity: 1638
Merit: 1011


jakiman is back!


View Profile
March 29, 2016, 01:12:06 AM
 #1493

there is a chance that the price will rise more?

Eventually.

But I think in the near future it will probably drop lower or stay around the current level.
The top 3 addresses on Bittrex combined have 10% of the total available supply or the equivalent of 198 masternodes.
That means the distribution is poor now and that price manipulation will likely happen in the future if it isn't happening already.

I don't think distribution is poor. There will always be major share holders so that's expected.
Due to it being still in PoW stage, there are plenty of new coins to go around daily anyways.

Lack of promo during this PoW stage does mean there is no increase in number of buyers though.
With any form of investment, speculation is key to growth and good result solidifies it for next up.
So healthy dose of promotion, dev updates & community involvement is needed. (bounties etc)

Anyways, it's still very early stages for DNET. It was only last month when it was launched! Cheesy
It needs more time to find stability and sort out any kinks. (like what happened with 1.0.2.0)

kokokoin
Hero Member
*****
Offline Offline

Activity: 638
Merit: 500



View Profile
March 29, 2016, 08:11:46 AM
 #1494

And don't forget about 360 000 coins mined every day.
cryptomaxsun
Legendary
*
Offline Offline

Activity: 2730
Merit: 1387


Ukrainians will resist


View Profile WWW
March 29, 2016, 08:32:31 AM
 #1495

Who knows what else are normal coins with the function of the masternode?

❘|❘ Cлaвa Укpaинe! ❘|❘ Glory to Ukraine! ❘|❘
❘|❘ КaPФaгeн дoлжeн быть paзpyшeн ❘|❘
kokokoin
Hero Member
*****
Offline Offline

Activity: 638
Merit: 500



View Profile
March 29, 2016, 08:56:59 AM
 #1496

Who knows what else are normal coins with the function of the masternode?
PepeCoin has masternodes but they will be activated in 2 weeks.
jk9694
Full Member
***
Offline Offline

Activity: 274
Merit: 122


View Profile
March 29, 2016, 06:17:42 PM
 #1497

Who knows what else are normal coins with the function of the masternode?
PepeCoin has masternodes but they will be activated in 2 weeks.

Got a link?
Rumhurius
Legendary
*
Offline Offline

Activity: 1672
Merit: 1046


Here we go again


View Profile
March 29, 2016, 10:47:11 PM
 #1498

Who knows what else are normal coins with the function of the masternode?
PepeCoin has masternodes but they will be activated in 2 weeks.

Got a link?

https://bitcointalk.org/index.php?topic=1391598.0

Hamukione
Hero Member
*****
Offline Offline

Activity: 1202
Merit: 507

Pinch.Network Guaranteed Airdrop


View Profile
March 30, 2016, 01:27:21 PM
 #1499

Any reason for the big price drop?

Pinch.Network - Join the airdrop now for free! No waitlist, no points. Guaranteed airdrop by claiming a free NFT.
Noolz39
Hero Member
*****
Offline Offline

Activity: 630
Merit: 503



View Profile
March 30, 2016, 01:32:20 PM
 #1500

Any reason for the big price drop?
i think price will recover very soon.
Pages: « 1 ... 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 67 68 69 70 71 72 73 74 [75] 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 ... 541 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!