Post
Topic
Board Announcements (Altcoins)
Re: Nxt :: descendant of Bitcoin - Updated Information
by
lr127
on 14/01/2014, 06:54:25 UTC
Can anyone explain this in more detail? Or maybe it has already been discussed somewhere.

Was discussed several times, think starting point was here https://bitcointalk.org/index.php?topic=366105.0
or maybe here https://nextcoin.org/index.php/topic,471.0.html (but this ends with a link to the above link)
Thanks! I found this place:

Each time a node sees a transaction it checks if it's the first time a public key used.
If yes, then soft remembers this key, so next user with the same account id will get all transactions rejected.

Code:
//Transaction.verify()
else if (account.publicKey == null) {
account.publicKey = senderPublicKey;
} else if (!Arrays.equals(senderPublicKey, account.publicKey)) {