Bitcoin Forum
June 26, 2024, 04:04:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 »
101  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com — Important update 1.5.5 on: November 21, 2015, 05:55:39 AM
My wallet is updated and all my balance is all fine. Did anyone have coins stolen?

Sure nobody lost coins... Glad you are ok too  Cool

Next stage of Gulden comes soon...

What was stolen in the double spend?

Bitcoin.
What Jero means is that average users will be fine, it is not like NLG will have just vanished out of anyone's wallet while they were not using it, only people receiving NLG in exchange for goods (services like exchanges etc.)
102  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com — Important update 1.5.5 on: November 20, 2015, 05:57:36 AM
We didn't patch any bugs specifically, as the double spending was not as the result of a 'bug' but rather is just a design limit of how crypto coins work - if you have 50% you can execute double spends.
What we have done is we have added an automated checkpoint system as an extra, this is intended to protect the network against double spends so long as you only deal with transactions that have been checkpointed you will be safe from a double spend.

Not specifically related to the timewarp attack which is mostly a problem for PoS coins.


COOL ,  Smiley
how would I know when the transaction is checkpointed?
Thanks.
As a regular user you can just look in your transaction list, transactions will not get a check mark next to them until they are safely behind a checkpoint.

From an API perspective we have modified the 'listtransactions' RPC call to have a new field "secured_by_checkpoint" which will contain "yes" if the transaction is check pointed and "no" if it is not, we have also added a configuration option which can be set if you want 'listtransactions' to only ever return check pointed transactions.
It is up to all services to make use of these if they want to be 100% safe in terms of double spends, however the checkpointing does help quite a bit even if they don't as it makes the attacks a lot harder to execute smoothly anyway.
103  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com — Important update 1.5.5 on: November 20, 2015, 05:29:11 AM
Question,

Looking at your commits, (not a programmer so bear with me) ,
it looks like what you patched was the timewarp attack discovered by presstab a few months ago.
Is that accurate?
or
did i misunderstand, because the comments about stopping a 51% attack made no sense to me.
51% attacks can happen anytime to a PoW coin if someone brings 51% or more computation power to a coin's network.
But since you made a sotfware fix, it does not seem likely it was a 51% attack.
So what exactly was fixed.
Thanks.

We didn't patch any bugs specifically, as the double spending was not as the result of a 'bug' but rather is just a design limit of how crypto coins work - if you have 50% you can execute double spends.
What we have done is we have added an automated checkpoint system as an extra, this is intended to protect the network against double spends so long as you only deal with transactions that have been checkpointed you will be safe from a double spend.

In the long/medium term we have some better solutions we are considering which will then replace this solution.

Not specifically related to a timewarp attack at all.
104  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com — Important update 1.5.4 on: November 19, 2015, 09:56:51 AM
The code on github, https://github.com/Gulden/gulden-official  (master) version, although it does show the latest commit to be within the day, is not explicit in proclaiming it's version 1.5.4.  It would be reassuring to see that version number, or in the case of going to 1.5.5,  _that_ version number.  (The only version numbers visible when you go to there are 1.5.1 and 1.5.2)

They are tagged, however I will make a point of including it in the commit message as well in future.
105  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com — Important update 1.5.4 on: November 19, 2015, 09:55:55 AM
What kind of issue and does it require code changes in future?
After testing I did a final code review, the check-pointing code we used as a base for ours had while loops without control braces which is not something that is usually recommended and causes warnings with many compilers, so I re-factored this to put control braces.Due to some weird white space and  tiredness/stress I accidentally got the one set of braces wrong and slightly changed how the code worked. This has caused the checkpoint to reject valid blocks if activated in some cases.

I should have known better than to do any refactoring even if it seemed really trivial as main testing had already been done, unfortunately when resources are stretched thin and stress levels are high sometimes these things happen.

We have been working hard on improving our testing - one of the lesser publicised changes about 1.5.4 is that we now have a permanent live public testnet, and we want to work on getting more community members involved in helping us test in future, so hopefully we can grow the team in a way that helps prevent these things in future.

Quote
Can it happen again?
Anything is possible but it is not likely, I've now triple checked that the code is the same as what we had when testing and am doing some retesting to be sure, the new builds are on the way and will work.


Apologies to everyone for the extra hassle here.
106  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 18, 2015, 07:45:32 PM
What is the channel/s on IRC used for Gulden ?
We are in #gulden on freenode - however it is rather small, the slack community is much larger.
107  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com — Important update 1.5.4 on: November 18, 2015, 06:00:43 PM
Suggested code changes
init.cpp remove
Code:
int nCount = 0;

main.php after
Code:
BlockMap::iterator mi = mapBlockIndex.find(inv.hash);
add
Code:
pfrom->nBlocksRequested++;

in
Code:
printf("LoadBlockIndexDB(): using synchronized checkpoint %s\n", Checkpoints::hashSyncCheckpoint.ToString().c_str());

change printf to LogPrintf
Thanks for this, will clean those up for next release, please feel free to use our bug tracker https://github.com/Gulden/gulden-official/issues
108  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com — Important update 1.5.4 on: November 18, 2015, 03:09:49 PM
Just a note, the check pointing will not be activated until *after* a majority of users and miners have upgraded (to prevent fork issues) so please remain extremely cautious for now in terms of transactions until check pointing kicks in.
The clients will show circles instead of check marks next to transactions until the check pointing is active, only transactions with a check mark next to them can be considered as safe from double spending.
109  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 18, 2015, 05:26:41 AM
How am I trolling by asking how you intend to prevent double spends? I was just curious about your plan to do it, since, as I understand it, the entire point of proof of work is to prevent double spends, and proof of work breaks down if one entity controls more than half the hash rate. It seems like an intractable problem. Sorry for asking, jeez...

It is the way you word things that makes all the difference, if you actually want people to take the time to give a serious response to you then I strongly suggest you go back and look at how you have worded your last message and do the complete opposite in future.
As for our medium and long term solutions, we will release more on that when we are ready, there is no point discussing it before then.
110  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 17, 2015, 09:08:22 PM
Are we getting new wallets ?
New wallets are in the process of being built, it takes a few hours so likely tomorrow morning.
111  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 17, 2015, 07:00:32 PM
Sorry to hear about the 51% attack on Gulden. The GRS devs would be our first suspects if digibyte got attacked. HR and others would testify to this.
While that may very well be true, without evidence I don't think anyone should be pointing fingers anywhere, if anyone has any evidence please feel free to come forward.


Quote
Have you considered Multi-Algo for Gulden?
Yes, we don't consider it a good long term solution for Gulden, I'm not going to go into any more specifics than that, you can probably find some details earlier in this thread or on our official forums if you are interested.
112  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 17, 2015, 06:15:26 PM
Since the dev team knows how to do 51% attacks will you retaliate against other coins if we get attacked again ?
I don't do that sort of thing, if I did I would already be retired on an island somewhere plenty of coins out there with easy to target giant vulnerabilities in them.
We are here to build things not tear them down.
113  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 17, 2015, 06:13:47 PM
Quote
Wouldn't there be time for an attack between checkpoints?
No.

Quote
Are you planning to just rollback transactions to the previous checkpoint if there's another attack?
No, checkpoints are to protect vendors and users from attacks not rollback the chain.

Quote
It seems very unlikely that the attacker(s) would bother with NLG again, since afaik the only exchange is Bittrex,
It seems incredibly likely that unless we put a fix in place they will do it again and again.

Quote
and you can bet they're going to keep a close eye on it,
You cannot stop a double spend just by keeping a close eye on it.

Quote
but it seems a bit disingenuous to say that you have solved double spending.
We have been more than clear that this is just an interim solution. In the medium and long term we plan to put better systems in place.

Quote
The only way to prevent 51% attacks and double spending is to make the coin more centralized, which seems to be what is being done, that you kind of acknowledge with statements like "We will be releasing our interim solution...", where 'interim' implies it is a quick fix that will be removed later. I mean, if you truly solved double spending without centralizing the coin, you'd get the Nobel prize for crypto or something, right?
Oh right you are just here to troll without anything positive to contribute to the world, I won't waste any more valuable time explaining things to you then.
114  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 17, 2015, 09:21:34 AM
Hey pijpenstelen,

These types of attacks wouldn't cause issues with your personal funds in your wallet. It mainly affects exchanges and vendors/merchants if targeted. We will be releasing our interim solution sometime today after further testing.
The testing also included doing multiple 51% attacks on our test network and the results have been excellent.
To be more specific you are only at risk when receiving NLG in exchange for something.
e.g. If someone sends you 1000000 NLG and you send them 10 BTC, that 1000000 NLG transaction might later 'disappear' leaving you with no NLG or BTC.

So in short exercise extreme caution in such situations for now, although that is anyway a good idea always.
115  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 16, 2015, 07:57:57 PM
Thanks for this update, how is it possible that there is almost a fix for 51% attacks?
Not 51% attacks entirely, just double spending.
There are other attacks that can be executed via 51% e.g. denial of service and this won't address those (they aren't the immediate concern as they are less likely - no financial gain)

This is just an interim solution so that we can move on in the meantime, in the medium term we will be putting out better solutions.
116  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 16, 2015, 08:38:39 AM
Currently, it seems another 51% attack is happening?

51% Attack? Do we know who is doing it , if anything happens to Gulden there will be a war that will destroy cryptos for good. Attackers you have been warned.

Another? What happened? More then once means it's intentional. I can think of a few people that will want to hurt Gulden.

These attacks is most likely to do with the announcement of Nocks as a fintech company for Gulden which was very big news for the currency. @Buerra any other coins that wanted you to add them to Nocks recently and you refused them?

Damn! Someone or some people see Gulden as a future threat! This is bad news , does the team have a fix for this?
I'm busy working on a fix but it will take a while still.
117  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 08, 2015, 03:03:20 PM
EFL is only 7 positions behind NLG on coinmarketcap. This is not to start a debate but more to say that the developers made a clever move to have a very low coin supply. EFL have done no work and because of low supply might get ahead as the top countrycoin.

I know psychoticboy is the main investor that keeps their price level elavated but interesting to see it only takes one person to push the value up on low supply coins.
Market cap alone is a very sketchy indicator of anything, especially when it is based on as little as $100 (or less) volume.
118  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 07, 2015, 06:56:54 PM
Can anyone explain to me why this currency is going for such a low price? Are we lucky to be early adopters, no marketing?  I compare to other coins and there is nothing that has better value.
In my opinion, low hype  and no gimmicks. I suppose some may call these tactics (hype and gimmicks) 'marketing' however as many other coins have shown it is not sustainable, in the end massive hype leads to a massive crash, easy up easy down...
Gulden is focused on long term sustainable growth and not short term gains and I for one feel this is much more important.
119  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 07, 2015, 08:17:58 AM
Exciting times.
120  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NLG] [GULDEN] Gulden.com/join — Meet the community and chat with the devs on: November 03, 2015, 08:05:51 AM
Reminder to all to have your say on the wallets here https://community.gulden.com/t/features-you-would-like-to-see-in-the-wallet-s/1323
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!