ok next i wanna point on another interesting found:
for this i have to make a comparison first:
v.0.1.0
//////////////////////////////////////////////////////////////////////////////
//
// CTransaction
//
bool CTxIn::IsMine() const
{
CRITICAL_BLOCK(cs_mapWallet)
{
map<uint256, CWalletTx>::iterator mi = mapWallet.find(prevout.hash);
if (mi != mapWallet.end())
{
const CWalletTx& prev = (*mi).second;
if (prevout.n < prev.vout.size())
if (prev.vout[prevout.n].IsMine())
return true;
}
}
return false;
}
int64 CTxIn::GetDebit() const
{
CRITICAL_BLOCK(cs_mapWallet)
{
map<uint256, CWalletTx>::iterator mi = mapWallet.find(prevout.hash);
if (mi != mapWallet.end())
{
const CWalletTx& prev = (*mi).second;
if (prevout.n < prev.vout.size())
if (prev.vout[prevout.n].IsMine())
return prev.vout[prevout.n].nValue;
}
}
return 0;
}
and now v.0.0.8
//////////////////////////////////////////////////////////////////////////////
//
// CTransaction
//
bool CTxIn::IsMine() const
{
map<uint256, CWalletTx>::iterator mi = mapWallet.find(prevout.hash);
if (mi != mapWallet.end())
{
const CWalletTx& prev = (*mi).second;
if (prevout.n < prev.vout.size())
if (prev.vout[prevout.n].IsMine())
return true;
}
return false;
}
int64 CTxIn::GetDebit() const
{
map<uint256, CWalletTx>::iterator mi = mapWallet.find(prevout.hash);
if (mi != mapWallet.end())
{
const CWalletTx& prev = (*mi).second;
if (prevout.n < prev.vout.size())
if (prev.vout[prevout.n].IsMine())
return prev.vout[prevout.n].nValue;
}
return 0;
}
we clearly can see: 0.0.8 does not have yet the capabilities to secure those 2 blocks (essential cause they affect the wallet. so he came into the conclusion to put cs_mapWallet to explicitly point on the fact that those 2 are critical processing relevant code blocks.)
the main reason to do this, is to prevent other people to stream their money power to your side to manipulate you to access yours and maybe steal your funds.
main issue to do this, is to prevent especially those to access your mind that you do not want to be enter it. the crit parts basically show us how this looks in c- plus plus code.
this is an important build in general using such critical section warnings and blockings from entering a code blocks inside processing functionality.
i think it could point on the fact that it matches a lot for the fact that David Kleiman had all such knowledge how to think in such a way. with all his certificates toward security cryptography and work as an honored soldier.
at least at this point in time i do not know any other person who could have build it in this way. and a lot matches him to be at least the original coder using this pseudonym.
but i also mentioned he was coming from the life of a soldier. so he got already paid by outside influence to even coming into such an idea.
the fact he used a german gmx.net address in the white paper also tells me he was using scientific and academics connection from this country the most. meaning that a lot of influence to build this up could be of german origin.
but more like in an unconscious way.
to understand this better. imagine a village people living inside now they build their own isolated world to have their fun with each others. now this fun is somehow flown out, with them not knowing anything about and unimportant to their private little villages workings and existing.
but now it lands at one specific guy in america Florida (soldiers mostly are anchored deep into society not high, so it make sense that such things lands at them first), that starts how he is wired himself understand this as his payment for building up this code. he basically synchs perfectly into becoming programmer for this.
later unfortunately dies (2013)
leaving the world with a new world core for money basically.
ironically
while back in the village the people have still no clue about what really has happend with the outside world. they are not aware of any of this.
well we germans are still known for being strong thinkers. but also unconscious for genius ideas quite often ironically. so it would not wonder me that this is what really happend here.
i cannot get rid of the thought of feeling a bit like inside an Asterix & Obelix comic now...
*Pokerface*