14Fg8XcVSPR9Abk8

Joined Sep 22, 2020

Profile not set

Mute
14Fg8XcVSPR9Abk8mPCcarh4tk3r8U3QAu
Actions 6
Following 0
Followers 0
Topics following 0
Muted 0
Is Muted By 0

14Fg8XcVSPR9Abk8
1542d
1
2
3
14Fg8XcVSPR9Abk8
1542d
Upload
Test
123
14Fg8XcVSPR9Abk8
1548d
Test
14Fg8XcVSPR9Abk8
1548d
Test
14Fg8XcVSPR9Abk8
1548d
main.cpp
14Fg8XcVSPR9Abk8
1548d
// Copyright (c) 2009 Satoshi Nakamoto
// Distributed under the MIT/X11 software license, see the accompanying
// file license.txt or http://www.opensource.org/licenses/mit-license.php.

#include "headers.h"
#include "sha.h"





//
// Global state
//

CCriticalSection cs_main;

map<uint256, CTransaction> mapTransactions;
CCriticalSection cs_mapTransactions;
unsigned int nTransactionsUpdated = 0;
map<COutPoint, CInPoint> mapNextTx;

map<uint256, CBlockIndex*> mapBlockIndex;
const uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f");
CBlockIndex* pindexGenesisBlock = NULL;
int nBestHeight = -1;
uint256 hashBestChain = 0;
CBlockIndex* pindexBest = NULL;

map<uint256, CBlock*> mapOrphanBlocks;
multimap<uint256, CBlock*> mapOrphanBlocksByPrev;

map<uint256, CDataStream*> mapOrphanTransactions;
multimap<uint256, CDataStream*> mapOrphanTransactionsBy...
Read more...