Bitcoin Forum
May 21, 2024, 09:26:22 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 »
  Print  
Author Topic: bter hacked and lost 50m nxt  (Read 25434 times)
Este Nuno
Legendary
*
Offline Offline

Activity: 826
Merit: 1000


amarha


View Profile
August 15, 2014, 07:07:52 PM
 #261

Now we will see if NXT is decentralized or not Smiley


rollback = centralized

This ^.

I think it is so funny how coins like Vericoin and now NXT tout themselves as a "DECENTRALIZED" currency. But when a large hack occurs ... "oops can we just roll back the chain this one time?"

lol


+ 1000

You can say it is decentralized as many as you can type a post, it does't change the fact

Rollback = centralized

There's really no other way to describe it. I'm amazed at what people around here will label "decentralized"

"but they voted, so it's not centralized" GTFO LOL SMH   Roll Eyes

This is the fundamental design of blockchain technology.
madalieninvader
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
August 15, 2014, 07:10:43 PM
 #262


That actually confirms the decentralised nature of it. Nobody in particular can choose to roll back, that has to be reached through a democratic decision built through a decentralised consensus. It's the very definition of decentralisation. What you are talking about is Laissez-Faire politics, where you just don't care about stopping the thief.



I don't necessarily support rollbacks. But as we've gone over many times in this thread, a group of miners/forgers deciding on what chain to continue on is clearly decentralised. Just because you don't like an idea doesn't mean you can just apply an erroneous label to it.

well in your understanding 
centralized=decision of one person or maybe a few of persons
decentralized= decision of many people, majority wins

in my understanding
decentralized= individual decision of each and every person about their own property within the limit of given rules (code)
centralized= anybody (be it one person or many persons) can make arbitrary decisions about anybody elses's property

the whole purpose of Bitcoin or any other decent crypto as a technical solution is to guarantee that nobody can make arbitrary decisions about anybody else's property. This is why I am ready to call them decentralized solutions. Everybody has to follow the same rules. Majority of hashing power is used as a best way to prevent attacks, best incentive to stick to the code.  But in your undestanding one specific majority can make arbitrary decisions. 

whatever the result of the vote, I have serious misgivings about cryptocurrencies - just an existence of such a vote is bad


This is what I've been trying to say but didn't know how. I'm not technological and economic ninja but I don't think this is insurmountable problem.

I hope it's not an insurmountable problem. If it is maybe we have to choose between lesser of two evils. Have our finances dominated by governments, central banks, and tyrannies of majorities, or dominated by a majority of miners/stakers/forgers with developers having a lot of pull.

crypto currency poker:
https://www.betcoinpoker.ag/
https://nitrogensports.eu/
https://pokershibes.com/
https://sealswithclubs.eu/ (are you coming back seals?)

BURST: http://burstcoin.info/ Mining for everyone, ASIC resistant, wide fair distribution, many features, greener POW, Smart Contracts (Automatic Transactions)

♦  Just-Dice.com  ♦   ♦  1% House Edge Dice Game  ♦   ♦  Play or Invest  ♦
coinsolidation
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250

Bitmark Developer


View Profile WWW
August 15, 2014, 07:12:21 PM
 #263

This is the fundamental design of blockchain technology.

Correct. It is distributed and decentralized governance, what the majority decides goes. This happens constantly whether it's moving to a new client or upgrading to a new protocol. That is the design.

Here it is in code https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L2474

Code:
        // Reject block.nVersion=1 blocks when 95% (75% on testnet) of the network has upgraded:
        if (block.nVersion < 2 &&
            CBlockIndex::IsSuperMajority(2, pindexPrev, Params().RejectBlockOutdatedMajority()))
        {
            return state.Invalid(error("AcceptBlock() : rejected nVersion=1 block"),
                                 REJECT_OBSOLETE, "bad-version");
        }

Bitmark (reputation+money) : Bitmark v0.9.4 (release)
MasterMined710
Legendary
*
Offline Offline

Activity: 1182
Merit: 1000



View Profile
August 15, 2014, 07:18:45 PM
 #264

question: so if the people who own 51% of nxt decides to rollback they can just do it right?
what if only like 100 people own 51% of nxt. those 100 people can just rollback and no one can stop them?

bitshares x dpos helps solve this problem because 51% of users would have to agree on a rollback not just the richest 51%.

with btc and other pow coins i think you need like 80%+ of users/nodes to agree.

DASH = Digital Cash         FAQ          DASHTALK        DashNews
liondani
Member
**
Offline Offline

Activity: 97
Merit: 10

Inch by Inch,Play by Play


View Profile
August 15, 2014, 07:20:54 PM
 #265

Why did Bter send the other 90 BTC to the hacker after he said the deal was off?!

That was insane.

it depends on the hackers identity...

Inch by Inch, Play by Play
Bitrated user: liondani.
Este Nuno
Legendary
*
Offline Offline

Activity: 826
Merit: 1000


amarha


View Profile
August 15, 2014, 07:21:36 PM
 #266

question: so if the people who own 51% of nxt decides to rollback they can just do it right?
what if only like 100 people own 51% of nxt. those 100 people can just rollback and no one can stop them?

bitshares x dpos helps solve this problem because 51% of users would have to agree on a rollback not just the richest 51%.

with btc and other pow coins i think you need like 80%+ of users/nodes to agree.


Yes, in NXT if the 100 people forge with >50% can.

How does Bitshares enforce individuality? What stops sock puppets? That's interesting I hadn't heard that before.

Chris001
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250

electroneum.com


View Profile
August 15, 2014, 07:22:48 PM
 #267

This is the fundamental design of blockchain technology.

Correct. It is distributed and decentralized governance, what the majority decides goes. This happens constantly whether it's moving to a new client or upgrading to a new protocol. That is the design.

Here it is in code https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L2474

Code:
        // Reject block.nVersion=1 blocks when 95% (75% on testnet) of the network has upgraded:
        if (block.nVersion < 2 &&
            CBlockIndex::IsSuperMajority(2, pindexPrev, Params().RejectBlockOutdatedMajority()))
        {
            return state.Invalid(error("AcceptBlock() : rejected nVersion=1 block"),
                                 REJECT_OBSOLETE, "bad-version");
        }


Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

https://bitcointalk.org/index.php?action=trust;u=186785
Here is the link to my trust settings here on forum. This trust system is very unfair. I make good on every deal Ive ever made. I had many, many deals as you can see and I never scammed anyone. All it takes is a random account to give you negative trust and youre screwed. Tomatocage has never even talked to me ever but when the random acct hit me with negative trust, Tomatocage came right behind him and marked neg trust again so obviously he was the one who did it. You can look at Tomatocage trust and see how many of his compeditors at the currency exchange thread he labeled scammers. I never scammed anyone. My trust was green over 20 before this. I hope it never happens to you because the mods cant help you.
madalieninvader
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
August 15, 2014, 07:25:56 PM
 #268

Thanks for the posts people. Even those I disagree with have helped my understanding. I've got to get out of the ANN pages once in a while. I forgot sensible discussion can take place on bitcointalk.

Later.

crypto currency poker:
https://www.betcoinpoker.ag/
https://nitrogensports.eu/
https://pokershibes.com/
https://sealswithclubs.eu/ (are you coming back seals?)

BURST: http://burstcoin.info/ Mining for everyone, ASIC resistant, wide fair distribution, many features, greener POW, Smart Contracts (Automatic Transactions)

♦  Just-Dice.com  ♦   ♦  1% House Edge Dice Game  ♦   ♦  Play or Invest  ♦
Este Nuno
Legendary
*
Offline Offline

Activity: 826
Merit: 1000


amarha


View Profile
August 15, 2014, 07:26:01 PM
 #269

This is the fundamental design of blockchain technology.

Correct. It is distributed and decentralized governance, what the majority decides goes. This happens constantly whether it's moving to a new client or upgrading to a new protocol. That is the design.

Here it is in code https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L2474

Code:
        // Reject block.nVersion=1 blocks when 95% (75% on testnet) of the network has upgraded:
        if (block.nVersion < 2 &&
            CBlockIndex::IsSuperMajority(2, pindexPrev, Params().RejectBlockOutdatedMajority()))
        {
            return state.Invalid(error("AcceptBlock() : rejected nVersion=1 block"),
                                 REJECT_OBSOLETE, "bad-version");
        }


Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

What would you have done when someone created the 184 billion BTC out of thin air? If we couldn't roll that back BTC would be dead.

It's almost like anything other than this would actually be centralised. Because it would imply controlling the software to prevent change.
HinnomTX
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
August 15, 2014, 07:26:13 PM
 #270

If I have learned anything in the world of crypto. It's just when you think nothing can get worse just when you think everythings at an all time low Mark Karpeles will walk his fat fucking ass into the room and spill a boiling hot frappucino all over your computer. Mark my words thinks are about to get worse.
+1 LMAO!!!

"One can only solve so much with cryptography. The rest of the solution will prove to be economic in nature." -Evan Duffield
Dash is Digital Cash.  https://www.dash.org
Nautica
Jr. Member
*
Offline Offline

Activity: 59
Merit: 10


View Profile
August 15, 2014, 07:40:22 PM
 #271

Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

Then what you are asking for is impossible. At some point, coders make choices on what they implement that has an impact on the protocol and the network. Furthermore, it is practically impossible to pretend that you can prevent people from arbitrarily choosing to point their clients to another blockchain. Forks will happen because of bugs, developer intervention, and even because a user has decided to make his own personal fork for whatever reason. There's always a game going on about how many people are going to join a given fork.

The only truely "decentralised" system is the universe. You can not roll back anything, time passes and the laws of physics take care of executing themselves with no possible changes on the "blockchain". No coin that is decentralised in that sense can exist. Cryptocoins are simulations of a universe, but humans are one level on top of it, and the protocol can not reach out and prevent somebody from fiddling with the controls. It would be like sort of Skynet world playing God with its own creators.
Este Nuno
Legendary
*
Offline Offline

Activity: 826
Merit: 1000


amarha


View Profile
August 15, 2014, 07:43:18 PM
 #272


The only truely "decentralised" system is the universe. You can not roll back anything, time passes and the laws of physics take care of executing themselves with no possible changes on the "blockchain". No coin that is decentralised in that sense can exist. Cryptocoins are simulations of a universe, but humans are one level on top of it, and the protocol can not reach out and prevent somebody from fiddling with the controls.

This is a good quote!

I'll try to remember to link to this when this issue inevitably comes up again.
Chris001
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250

electroneum.com


View Profile
August 15, 2014, 07:46:58 PM
 #273

This is the fundamental design of blockchain technology.

Correct. It is distributed and decentralized governance, what the majority decides goes. This happens constantly whether it's moving to a new client or upgrading to a new protocol. That is the design.

Here it is in code https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L2474

Code:
        // Reject block.nVersion=1 blocks when 95% (75% on testnet) of the network has upgraded:
        if (block.nVersion < 2 &&
            CBlockIndex::IsSuperMajority(2, pindexPrev, Params().RejectBlockOutdatedMajority()))
        {
            return state.Invalid(error("AcceptBlock() : rejected nVersion=1 block"),
                                 REJECT_OBSOLETE, "bad-version");
        }


Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

What would you have done when someone created the 184 billion BTC out of thin air? If we couldn't roll that back BTC would be dead.

It's almost like anything other than this would actually be centralised. Because it would imply controlling the software to prevent change.

No, you are comparing something, and then jumping to a whole different subject, and then acting like these unrealated things prove an outrageous conclusion.

That was a break in the system. The system broke. It had to be fixed.

That was not voting to change a legitimate transaction. Meaning one that was made without the system breaking down.

Taking the system, and changing it, when the system did not break, is a centralized decision.

Bter was robbed of Nxt. Bter should pay the price. People that trusted that central source, including me and my Nxt, should pay the price.

Why? Because that is what happened, that's why. When there can be a vote made to alter the system, to go back in time and erase something, that calls into question many things about that system.

The system should not have the ability to be altered after the fact. It's a ledger, and we HAVE TO FIND a way for that ledger not to be able to be altered.

That is what we need to do next. This is where we are as a community. We are not doing as good as we think, and we are getting worse.

This is a classic example of a flaw that needs to be addressed.

And for you goofs, that think this is an advantage, please log off now, as you are the beginning of the fork we are trying not to go down here, for gods sakes. smh

https://bitcointalk.org/index.php?action=trust;u=186785
Here is the link to my trust settings here on forum. This trust system is very unfair. I make good on every deal Ive ever made. I had many, many deals as you can see and I never scammed anyone. All it takes is a random account to give you negative trust and youre screwed. Tomatocage has never even talked to me ever but when the random acct hit me with negative trust, Tomatocage came right behind him and marked neg trust again so obviously he was the one who did it. You can look at Tomatocage trust and see how many of his compeditors at the currency exchange thread he labeled scammers. I never scammed anyone. My trust was green over 20 before this. I hope it never happens to you because the mods cant help you.
MasterMined710
Legendary
*
Offline Offline

Activity: 1182
Merit: 1000



View Profile
August 15, 2014, 07:47:06 PM
 #274

question: so if the people who own 51% of nxt decides to rollback they can just do it right?
what if only like 100 people own 51% of nxt. those 100 people can just rollback and no one can stop them?

bitshares x dpos helps solve this problem because 51% of users would have to agree on a rollback not just the richest 51%.

with btc and other pow coins i think you need like 80%+ of users/nodes to agree.


Yes, in NXT if the 100 people forge with >50% can.

How does Bitshares enforce individuality? What stops sock puppets? That's interesting I hadn't heard that before.



it cost a very small fee to be a delegate and the users can vote on delegates that don't misbehave. so basically it prevents the rich 50%+ from rollbacks like ppc/nxt pos.

Delegated Proof of Stake - Let's Talk Bitcoin Episode 129
https://www.youtube.com/watch?v=SdBpoRLmrbA&list=WL#t=726

DASH = Digital Cash         FAQ          DASHTALK        DashNews
Nautica
Jr. Member
*
Offline Offline

Activity: 59
Merit: 10


View Profile
August 15, 2014, 07:56:02 PM
 #275

This is a classic example of a flaw that needs to be addressed.
This is a classic example of an unsolvable problem.

Then what you are asking for is impossible. At some point, coders make choices on what they implement that has an impact on the protocol and the network. Furthermore, it is practically impossible to pretend that you can prevent people from arbitrarily choosing to point their clients to another blockchain. Forks will happen because of bugs, developer intervention, and even because a user has decided to make his own personal fork for whatever reason. There's always a game going on about how many people are going to join a given fork.

The only truely "decentralised" system is the universe. You can not roll back anything, time passes and the laws of physics take care of executing themselves with no possible changes on the "blockchain". No coin that is decentralised in that sense can exist. Cryptocoins are simulations of a universe, but humans are one level on top of it, and the protocol can not reach out and prevent somebody from fiddling with the controls. It would be like sort of Skynet world playing God with its own creators.

You will have to live with blockchains people can fork or roll back. What the blockchain brought to the table is that you could not modify it to your liking, but there is no way to prevent people from what is basically choosing to go use another alt-coin. Unless you want to try to dictatorially force people to use one and only given blockchain, you'll have to accept this and stop yelling at what is essentially a cloud.
Chris001
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250

electroneum.com


View Profile
August 15, 2014, 07:58:06 PM
 #276

Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

Then what you are asking for is impossible. At some point, coders make choices on what they implement that has an impact on the protocol and the network. Furthermore, it is practically impossible to pretend that you can prevent people from arbitrarily choosing to point their clients to another blockchain. Forks will happen because of bugs, developer intervention, and even because a user has decided to make his own personal fork for whatever reason. There's always a game going on about how many people are going to join a given fork.

The only truely "decentralised" system is the universe. You can not roll back anything, time passes and the laws of physics take care of executing themselves with no possible changes on the "blockchain". No coin that is decentralised in that sense can exist. Cryptocoins are simulations of a universe, but humans are one level on top of it, and the protocol can not reach out and prevent somebody from fiddling with the controls. It would be like sort of Skynet world playing God with its own creators.

When these forks happen it is an alternate reality, a new coin.

To this day I refer to Vericoin as Vericoin2, because that's what it is.

The real Vercoin had a boatload of it stolen off of Mintpal

The real Nxt had 5% stolen off of Bter.

The issue is getting to a point where HISTORY can't be changed. I don't think that is impossible at all.

https://bitcointalk.org/index.php?action=trust;u=186785
Here is the link to my trust settings here on forum. This trust system is very unfair. I make good on every deal Ive ever made. I had many, many deals as you can see and I never scammed anyone. All it takes is a random account to give you negative trust and youre screwed. Tomatocage has never even talked to me ever but when the random acct hit me with negative trust, Tomatocage came right behind him and marked neg trust again so obviously he was the one who did it. You can look at Tomatocage trust and see how many of his compeditors at the currency exchange thread he labeled scammers. I never scammed anyone. My trust was green over 20 before this. I hope it never happens to you because the mods cant help you.
Este Nuno
Legendary
*
Offline Offline

Activity: 826
Merit: 1000


amarha


View Profile
August 15, 2014, 08:00:19 PM
 #277

This is the fundamental design of blockchain technology.

Correct. It is distributed and decentralized governance, what the majority decides goes. This happens constantly whether it's moving to a new client or upgrading to a new protocol. That is the design.

Here it is in code https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L2474

Code:
        // Reject block.nVersion=1 blocks when 95% (75% on testnet) of the network has upgraded:
        if (block.nVersion < 2 &&
            CBlockIndex::IsSuperMajority(2, pindexPrev, Params().RejectBlockOutdatedMajority()))
        {
            return state.Invalid(error("AcceptBlock() : rejected nVersion=1 block"),
                                 REJECT_OBSOLETE, "bad-version");
        }


Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

What would you have done when someone created the 184 billion BTC out of thin air? If we couldn't roll that back BTC would be dead.

It's almost like anything other than this would actually be centralised. Because it would imply controlling the software to prevent change.

No, you are comparing something, and then jumping to a whole different subject, and then acting like these unrealated things prove an outrageous conclusion.

That was a break in the system. The system broke. It had to be fixed.

That was not voting to change a legitimate transaction. Meaning one that was made without the system breaking down.

Taking the system, and changing it, when the system did not break, is a centralized decision.

Bter was robbed of Nxt. Bter should pay the price. People that trusted that central source, including me and my Nxt, should pay the price.

Why? Because that is what happened, that's why. When there can be a vote made to alter the system, to go back in time and erase something, that calls into question many things about that system.

The system should not have the ability to be altered after the fact. It's a ledger, and we HAVE TO FIND a way for that ledger not to be able to be altered.

That is what we need to do next. This is where we are as a community. We are not doing as good as we think, and we are getting worse.

This is a classic example of a flaw that needs to be addressed.

And for you goofs, that think this is an advantage, please log off now, as you are the beginning of the fork we are trying not to go down here, for gods sakes. smh

That's fine that you think it's a flaw. But being able to save the system from exploits like 184 billion BTC one automatically implies the other.

I think it's unlikely that anyone is ever going to figure out a way to invent the system you want. But you never know. There could be some neo-Satoshi out there inventing it now.
Nautica
Jr. Member
*
Offline Offline

Activity: 59
Merit: 10


View Profile
August 15, 2014, 08:03:11 PM
 #278

Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

Then what you are asking for is impossible. At some point, coders make choices on what they implement that has an impact on the protocol and the network. Furthermore, it is practically impossible to pretend that you can prevent people from arbitrarily choosing to point their clients to another blockchain. Forks will happen because of bugs, developer intervention, and even because a user has decided to make his own personal fork for whatever reason. There's always a game going on about how many people are going to join a given fork.

The only truely "decentralised" system is the universe. You can not roll back anything, time passes and the laws of physics take care of executing themselves with no possible changes on the "blockchain". No coin that is decentralised in that sense can exist. Cryptocoins are simulations of a universe, but humans are one level on top of it, and the protocol can not reach out and prevent somebody from fiddling with the controls. It would be like sort of Skynet world playing God with its own creators.

When these forks happen it is an alternate reality, a new coin.

To this day I refer to Vericoin as Vericoin2, because that's what it is.

The real Vercoin had a boatload of it stolen off of Mintpal

The real Nxt had 5% stolen off of Bter.

The issue is getting to a point where HISTORY can't be changed. I don't think that is impossible at all.

What you're not realising is that every fork is a separate HISTORY. And like you ask, history can't be changed because of it is cryptographically secured and guaranteed. That's the invention of the blockchain. But I can still copy the history book and start doing my own additions to it on my own version of it. Nothing prevents me from copying a history book, then keep writing it and make my own version of it. It's the nature of data. You copy it, and then you make what you want with it. You are essentially asking to stop file sharing. How is that working out for the lawmakers? There is no way to prevent people from going somewhere else and doing their own thing.
madalieninvader
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
August 15, 2014, 08:11:39 PM
 #279

I got sucked back in.

Thing is I don't know if everyone doesn't see this as problem because of differing values and/or goals, or because they just haven't thought it through. I store gold or cash under my matress it's usually going to be there later. It won't disappear because I unknowingly bought it off some guy who hacked an exchange. That's just one scenario I can bring clearly to mind but I'm sure there's a many more.

Also one of the selling points of crypto evangelists has always been there's no chargebacks as compared to credit cards, or outright seizures like PayPal or banks in Cyprus.

crypto currency poker:
https://www.betcoinpoker.ag/
https://nitrogensports.eu/
https://pokershibes.com/
https://sealswithclubs.eu/ (are you coming back seals?)

BURST: http://burstcoin.info/ Mining for everyone, ASIC resistant, wide fair distribution, many features, greener POW, Smart Contracts (Automatic Transactions)

♦  Just-Dice.com  ♦   ♦  1% House Edge Dice Game  ♦   ♦  Play or Invest  ♦
Chris001
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250

electroneum.com


View Profile
August 15, 2014, 08:12:13 PM
 #280

Well then it looks like we still have a way to go. Because if this is how it should be "by design", it's not decentralized at all, not even close

Then what you are asking for is impossible. At some point, coders make choices on what they implement that has an impact on the protocol and the network. Furthermore, it is practically impossible to pretend that you can prevent people from arbitrarily choosing to point their clients to another blockchain. Forks will happen because of bugs, developer intervention, and even because a user has decided to make his own personal fork for whatever reason. There's always a game going on about how many people are going to join a given fork.

The only truely "decentralised" system is the universe. You can not roll back anything, time passes and the laws of physics take care of executing themselves with no possible changes on the "blockchain". No coin that is decentralised in that sense can exist. Cryptocoins are simulations of a universe, but humans are one level on top of it, and the protocol can not reach out and prevent somebody from fiddling with the controls. It would be like sort of Skynet world playing God with its own creators.

When these forks happen it is an alternate reality, a new coin.

To this day I refer to Vericoin as Vericoin2, because that's what it is.

The real Vercoin had a boatload of it stolen off of Mintpal

The real Nxt had 5% stolen off of Bter.

The issue is getting to a point where HISTORY can't be changed. I don't think that is impossible at all.

What you're not realising is that every fork is a separate HISTORY. And like you ask, history can't be changed because of it is cryptographically secured and guaranteed. That's the invention of the blockchain. But I can still copy the history book and start doing my own additions to it on my own version of it. Nothing prevents me from copying a history book, then keep writing it and make my own version of it. It's the nature of data. You copy it, and then you make what you want with it. You are essentially asking to stop file sharing. How is that working out for the lawmakers? There is no way to prevent people from going somewhere else and doing their own thing.


No you are taking this way out there.

No one is saying anything about adding to the history books.

I am talking about someone, or a group of people deciding to go with a chain that is not the correct one, one that is missing, say the 5% theft transaction off of Bter.

Thats what Im talking about. Not the universe or history books that I add things to.

What I'm taking about is stopping the ability of transaction getting erased from a ledger, when EVERYONE KNOWS THE TRANSACTION happened.

I think this is in our future. I hope.

https://bitcointalk.org/index.php?action=trust;u=186785
Here is the link to my trust settings here on forum. This trust system is very unfair. I make good on every deal Ive ever made. I had many, many deals as you can see and I never scammed anyone. All it takes is a random account to give you negative trust and youre screwed. Tomatocage has never even talked to me ever but when the random acct hit me with negative trust, Tomatocage came right behind him and marked neg trust again so obviously he was the one who did it. You can look at Tomatocage trust and see how many of his compeditors at the currency exchange thread he labeled scammers. I never scammed anyone. My trust was green over 20 before this. I hope it never happens to you because the mods cant help you.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 »
  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!