How would this prevent a flood attack ? What I mean is in Bitcoin and presumably Stellar, you need coins to create transactions. There is therefore a cost to spamming the system.
It doesn't prevent a flood attack. The challenge in this approach does not lie in "preventing it" but in "dealing with it".
Show HN: My experimental take on a decentralized ledger
11–20 of 28 posts
Re: Show HN: My experimental take on a decentralized ledger
#12How would this prevent a flood attack ? What I mean is in Bitcoin and presumably Stellar, you need coins to create transactions. There is therefore a cost to spamming the system.
Re: Show HN: My experimental take on a decentralized ledger
#13Cool. I really liked the idea of Stellar, but I just cant get over the premined coin distribution. Nice to have a truly decentralized alternative!
Re: Show HN: My experimental take on a decentralized ledger
#14> Transactions are FREE (the fee is always zero) How would you deal with DDoS attacks? Taking down a ledger like this could be easy...
Re: Show HN: My experimental take on a decentralized ledger
#15Re: Show HN: My experimental take on a decentralized ledger
#16Re: Show HN: My experimental take on a decentralized ledger
#17Re: Show HN: My experimental take on a decentralized ledger
#18Cool. I really liked the idea of Stellar, but I just cant get over the premined coin distribution. Nice to have a truly decentralized alternative!
What do you like about Stellar? It's not decentralized at all. Being premined is just the icing on the cake.
Re: Show HN: My experimental take on a decentralized ledger
#19Re: Show HN: My experimental take on a decentralized ledger
#20It's interesting that it says that "Warning: Requires Postgres 9.5. You WILL lose sync if you run against an earlier version. YOU HAVE BEEN WARNED." Which PostgreSQL features new in 9.5 are being used that cause that? Or are earlier versions somehow buggy?
I'm using upserts... The reason I'm using upserts is basically just lazyness because I didn't feel like refactoring the source code to work around requiring upserts. Also, I'm not very confident in C++ so I did not want to take on that task.
IF record EXISTS then UPDATE else INSERT