@ -168,6 +168,7 @@ bool CCoinsView::SetCoins(uint256 txid, const CCoins &coins) { return false; }
bool CCoinsView : : HaveCoins ( uint256 txid ) { return false ; }
bool CCoinsView : : HaveCoins ( uint256 txid ) { return false ; }
CBlockIndex * CCoinsView : : GetBestBlock ( ) { return NULL ; }
CBlockIndex * CCoinsView : : GetBestBlock ( ) { return NULL ; }
bool CCoinsView : : SetBestBlock ( CBlockIndex * pindex ) { return false ; }
bool CCoinsView : : SetBestBlock ( CBlockIndex * pindex ) { return false ; }
bool CCoinsView : : BatchWrite ( const std : : map < uint256 , CCoins > & mapCoins , CBlockIndex * pindex ) { return false ; }
CCoinsViewBacked : : CCoinsViewBacked ( CCoinsView & viewIn ) : base ( & viewIn ) { }
CCoinsViewBacked : : CCoinsViewBacked ( CCoinsView & viewIn ) : base ( & viewIn ) { }
bool CCoinsViewBacked : : GetCoins ( uint256 txid , CCoins & coins ) { return base - > GetCoins ( txid , coins ) ; }
bool CCoinsViewBacked : : GetCoins ( uint256 txid , CCoins & coins ) { return base - > GetCoins ( txid , coins ) ; }
@ -176,13 +177,7 @@ bool CCoinsViewBacked::HaveCoins(uint256 txid) { return base->HaveCoins(txid); }
CBlockIndex * CCoinsViewBacked : : GetBestBlock ( ) { return base - > GetBestBlock ( ) ; }
CBlockIndex * CCoinsViewBacked : : GetBestBlock ( ) { return base - > GetBestBlock ( ) ; }
bool CCoinsViewBacked : : SetBestBlock ( CBlockIndex * pindex ) { return base - > SetBestBlock ( pindex ) ; }
bool CCoinsViewBacked : : SetBestBlock ( CBlockIndex * pindex ) { return base - > SetBestBlock ( pindex ) ; }
void CCoinsViewBacked : : SetBackend ( CCoinsView & viewIn ) { base = & viewIn ; }
void CCoinsViewBacked : : SetBackend ( CCoinsView & viewIn ) { base = & viewIn ; }
bool CCoinsViewBacked : : BatchWrite ( const std : : map < uint256 , CCoins > & mapCoins , CBlockIndex * pindex ) { return base - > BatchWrite ( mapCoins , pindex ) ; }
CCoinsViewDB : : CCoinsViewDB ( CCoinsDB & dbIn ) : db ( dbIn ) { }
bool CCoinsViewDB : : GetCoins ( uint256 txid , CCoins & coins ) { return db . ReadCoins ( txid , coins ) ; }
bool CCoinsViewDB : : SetCoins ( uint256 txid , const CCoins & coins ) { return db . WriteCoins ( txid , coins ) ; }
bool CCoinsViewDB : : HaveCoins ( uint256 txid ) { return db . HaveCoins ( txid ) ; }
CBlockIndex * CCoinsViewDB : : GetBestBlock ( ) { return pindexBest ; }
bool CCoinsViewDB : : SetBestBlock ( CBlockIndex * pindex ) { return db . WriteHashBestChain ( pindex - > GetBlockHash ( ) ) ; }
CCoinsViewCache : : CCoinsViewCache ( CCoinsView & baseIn , bool fDummy ) : CCoinsViewBacked ( baseIn ) , pindexTip ( NULL ) { }
CCoinsViewCache : : CCoinsViewCache ( CCoinsView & baseIn , bool fDummy ) : CCoinsViewBacked ( baseIn ) , pindexTip ( NULL ) { }
@ -218,16 +213,22 @@ bool CCoinsViewCache::SetBestBlock(CBlockIndex *pindex) {
return true ;
return true ;
}
}
bool CCoinsViewCache : : BatchWrite ( const std : : map < uint256 , CCoins > & mapCoins , CBlockIndex * pindex ) {
for ( std : : map < uint256 , CCoins > : : const_iterator it = mapCoins . begin ( ) ; it ! = mapCoins . end ( ) ; it + + )
cacheCoins [ it - > first ] = it - > second ;
pindexTip = pindex ;
return true ;
}
bool CCoinsViewCache : : Flush ( ) {
bool CCoinsViewCache : : Flush ( ) {
for ( std : : map < uint256 , CCoins > : : iterator it = cacheCoins . begin ( ) ; it ! = cacheCoins . end ( ) ; it + + ) {
bool fOk = base - > BatchWrite ( cacheCoins , pindexTip ) ;
if ( ! base - > SetCoins ( it - > first , it - > second ) )
if ( fOk )
return false ;
}
if ( ! base - > SetBestBlock ( pindexTip ) )
return false ;
cacheCoins . clear ( ) ;
cacheCoins . clear ( ) ;
pindexTip = NULL ;
return fOk ;
return true ;
}
unsigned int CCoinsViewCache : : GetCacheSize ( ) {
return cacheCoins . size ( ) ;
}
}
/** CCoinsView that brings transactions from a memorypool into view.
/** CCoinsView that brings transactions from a memorypool into view.
@ -249,7 +250,7 @@ bool CCoinsViewMemPool::HaveCoins(uint256 txid) {
return mempool . exists ( txid ) | | base - > HaveCoins ( txid ) ;
return mempool . exists ( txid ) | | base - > HaveCoins ( txid ) ;
}
}
CCoinsViewCache * pcoinsTip = NULL ;
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
//
@ -450,9 +451,8 @@ int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
CBlock blockTmp ;
CBlock blockTmp ;
if ( pblock = = NULL ) {
if ( pblock = = NULL ) {
CCoinsDB coinsdb ( " r " ) ;
CCoins coins ;
CCoins coins ;
if ( coinsdb . Read Coins( GetHash ( ) , coins ) ) {
if ( pcoinsTip - > Get Coins( GetHash ( ) , coins ) ) {
CBlockIndex * pindex = FindBlockByHeight ( coins . nHeight ) ;
CBlockIndex * pindex = FindBlockByHeight ( coins . nHeight ) ;
if ( pindex ) {
if ( pindex ) {
if ( ! blockTmp . ReadFromDisk ( pindex ) )
if ( ! blockTmp . ReadFromDisk ( pindex ) )
@ -609,7 +609,7 @@ void CTxMemPool::pruneSpent(const uint256 &hashTx, CCoins &coins)
}
}
}
}
bool CTxMemPool : : accept ( CCoinsDB & coinsdb , C Transaction & tx , bool fCheckInputs ,
bool CTxMemPool : : accept ( CTransaction & tx , bool fCheckInputs ,
bool * pfMissingInputs )
bool * pfMissingInputs )
{
{
if ( pfMissingInputs )
if ( pfMissingInputs )
@ -668,9 +668,7 @@ bool CTxMemPool::accept(CCoinsDB& coinsdb, CTransaction &tx, bool fCheckInputs,
if ( fCheckInputs )
if ( fCheckInputs )
{
{
CCoinsViewDB viewDB ( coinsdb ) ;
CCoinsViewCache & view = * pcoinsTip ;
CCoinsViewMemPool viewMemPool ( viewDB , mempool ) ;
CCoinsViewCache view ( viewMemPool ) ;
// do we already have it?
// do we already have it?
if ( view . HaveCoins ( hash ) )
if ( view . HaveCoins ( hash ) )
@ -758,9 +756,9 @@ bool CTxMemPool::accept(CCoinsDB& coinsdb, CTransaction &tx, bool fCheckInputs,
return true ;
return true ;
}
}
bool CTransaction : : AcceptToMemoryPool ( CCoinsDB & coinsdb , bool fCheckInputs , bool * pfMissingInputs )
bool CTransaction : : AcceptToMemoryPool ( bool fCheckInputs , bool * pfMissingInputs )
{
{
return mempool . accept ( coinsdb , * this , fCheckInputs , pfMissingInputs ) ;
return mempool . accept ( * this , fCheckInputs , pfMissingInputs ) ;
}
}
bool CTxMemPool : : addUnchecked ( const uint256 & hash , CTransaction & tx )
bool CTxMemPool : : addUnchecked ( const uint256 & hash , CTransaction & tx )
@ -849,31 +847,24 @@ int CMerkleTx::GetBlocksToMaturity() const
}
}
bool CMerkleTx : : AcceptToMemoryPool ( CCoinsDB & coinsdb , bool fCheckInputs )
bool CMerkleTx : : AcceptToMemoryPool ( bool fCheckInputs )
{
{
if ( fClient )
if ( fClient )
{
{
if ( ! IsInMainChain ( ) & & ! ClientCheckInputs ( ) )
if ( ! IsInMainChain ( ) & & ! ClientCheckInputs ( ) )
return false ;
return false ;
return CTransaction : : AcceptToMemoryPool ( coinsdb , false ) ;
return CTransaction : : AcceptToMemoryPool ( false ) ;
}
}
else
else
{
{
return CTransaction : : AcceptToMemoryPool ( coinsdb , fCheckInputs ) ;
return CTransaction : : AcceptToMemoryPool ( fCheckInputs ) ;
}
}
}
}
bool CMerkleTx : : AcceptToMemoryPool ( )
{
CCoinsDB coinsdb ( " r " ) ;
return AcceptToMemoryPool ( coinsdb ) ;
}
bool CWalletTx : : AcceptWalletTransaction ( bool fCheckInputs )
bool CWalletTx : : AcceptWalletTransaction ( CCoinsDB & coinsdb , bool fCheckInputs )
{
{
{
{
LOCK ( mempool . cs ) ;
LOCK ( mempool . cs ) ;
// Add previous supporting transactions first
// Add previous supporting transactions first
@ -882,20 +873,15 @@ bool CWalletTx::AcceptWalletTransaction(CCoinsDB& coinsdb, bool fCheckInputs)
if ( ! tx . IsCoinBase ( ) )
if ( ! tx . IsCoinBase ( ) )
{
{
uint256 hash = tx . GetHash ( ) ;
uint256 hash = tx . GetHash ( ) ;
if ( ! mempool . exists ( hash ) & & ! coinsdb . HaveCoins ( hash ) )
if ( ! mempool . exists ( hash ) & & pcoinsTip - > HaveCoins ( hash ) )
tx . AcceptToMemoryPool ( coinsdb , fCheckInputs ) ;
tx . AcceptToMemoryPool ( fCheckInputs ) ;
}
}
}
}
return AcceptToMemoryPool ( coinsdb , fCheckInputs ) ;
return AcceptToMemoryPool ( fCheckInputs ) ;
}
}
return false ;
return false ;
}
}
bool CWalletTx : : AcceptWalletTransaction ( )
{
CCoinsDB coinsdb ( " r " ) ;
return AcceptWalletTransaction ( coinsdb ) ;
}
// Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock
// Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock
bool GetTransaction ( const uint256 & hash , CTransaction & txOut , uint256 & hashBlock , bool fAllowSlow )
bool GetTransaction ( const uint256 & hash , CTransaction & txOut , uint256 & hashBlock , bool fAllowSlow )
@ -915,8 +901,7 @@ bool GetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock
if ( fAllowSlow ) { // use coin database to locate block that contains transaction, and scan it
if ( fAllowSlow ) { // use coin database to locate block that contains transaction, and scan it
int nHeight = - 1 ;
int nHeight = - 1 ;
{
{
CCoinsDB coindb ( " r " ) ;
CCoinsViewCache & view = * pcoinsTip ;
CCoinsViewDB view ( coindb ) ;
CCoins coins ;
CCoins coins ;
if ( view . GetCoins ( hash , coins ) )
if ( view . GetCoins ( hash , coins ) )
nHeight = coins . nHeight ;
nHeight = coins . nHeight ;
@ -1565,18 +1550,15 @@ bool CBlock::ConnectBlock(CBlockIndex* pindex, CCoinsView &view, bool fJustCheck
bool CBlock : : SetBestChain ( CBlockIndex * pindexNew )
bool CBlock : : SetBestChain ( CBlockIndex * pindexNew )
{
{
// if this functions exits prematurely, the transaction is aborted
CCoinsViewCache & view = * pcoinsTip ;
CCoinsDB coinsdb ;
if ( ! coinsdb . TxnBegin ( ) )
return error ( " SetBestChain() : TxnBegin failed " ) ;
// special case for attaching the genesis block
// special case for attaching the genesis block
// note that no ConnectBlock is called, so its coinbase output is non-spendable
// note that no ConnectBlock is called, so its coinbase output is non-spendable
if ( pindexGenesisBlock = = NULL & & pindexNew - > GetBlockHash ( ) = = hashGenesisBlock )
if ( pindexGenesisBlock = = NULL & & pindexNew - > GetBlockHash ( ) = = hashGenesisBlock )
{
{
coinsdb . WriteHashBestChain ( pindexNew - > GetBlockHash ( ) ) ;
view . SetBestBlock ( pindexNew ) ;
if ( ! coinsdb . TxnCommit ( ) )
if ( ! view . Flush ( ) )
return error ( " SetBestChain() : TxnCommit failed " ) ;
return false ;
pindexGenesisBlock = pindexNew ;
pindexGenesisBlock = pindexNew ;
pindexBest = pindexNew ;
pindexBest = pindexNew ;
hashBestChain = pindexNew - > GetBlockHash ( ) ;
hashBestChain = pindexNew - > GetBlockHash ( ) ;
@ -1585,10 +1567,6 @@ bool CBlock::SetBestChain(CBlockIndex* pindexNew)
return true ;
return true ;
}
}
// create cached view to the coins database
CCoinsViewDB viewDB ( coinsdb ) ;
CCoinsViewCache view ( viewDB ) ;
// Find the fork (typically, there is none)
// Find the fork (typically, there is none)
CBlockIndex * pfork = view . GetBestBlock ( ) ;
CBlockIndex * pfork = view . GetBestBlock ( ) ;
CBlockIndex * plonger = pindexNew ;
CBlockIndex * plonger = pindexNew ;
@ -1625,8 +1603,11 @@ bool CBlock::SetBestChain(CBlockIndex* pindexNew)
CBlock block ;
CBlock block ;
if ( ! block . ReadFromDisk ( pindex ) )
if ( ! block . ReadFromDisk ( pindex ) )
return error ( " SetBestBlock() : ReadFromDisk for disconnect failed " ) ;
return error ( " SetBestBlock() : ReadFromDisk for disconnect failed " ) ;
if ( ! block . DisconnectBlock ( pindex , view ) )
CCoinsViewCache viewTemp ( view , true ) ;
if ( ! block . DisconnectBlock ( pindex , viewTemp ) )
return error ( " SetBestBlock() : DisconnectBlock % s failed " , pindex->GetBlockHash().ToString().substr(0,20).c_str()) ;
return error ( " SetBestBlock() : DisconnectBlock % s failed " , pindex->GetBlockHash().ToString().substr(0,20).c_str()) ;
if ( ! viewTemp . Flush ( ) )
return error ( " SetBestBlock() : Cache flush failed after disconnect " ) ;
// Queue memory transactions to resurrect
// Queue memory transactions to resurrect
BOOST_FOREACH ( const CTransaction & tx , block . vtx )
BOOST_FOREACH ( const CTransaction & tx , block . vtx )
@ -1646,10 +1627,13 @@ bool CBlock::SetBestChain(CBlockIndex* pindexNew)
return error ( " SetBestBlock() : ReadFromDisk for connect failed " ) ;
return error ( " SetBestBlock() : ReadFromDisk for connect failed " ) ;
pblock = & block ;
pblock = & block ;
}
}
if ( ! pblock - > ConnectBlock ( pindex , view ) ) {
CCoinsViewCache viewTemp ( view , true ) ;
if ( ! pblock - > ConnectBlock ( pindex , viewTemp ) ) {
InvalidChainFound ( pindexNew ) ;
InvalidChainFound ( pindexNew ) ;
return error ( " SetBestBlock() : ConnectBlock % s failed " , pindex->GetBlockHash().ToString().substr(0,20).c_str()) ;
return error ( " SetBestBlock() : ConnectBlock % s failed " , pindex->GetBlockHash().ToString().substr(0,20).c_str()) ;
}
}
if ( ! viewTemp . Flush ( ) )
return error ( " SetBestBlock() : Cache flush failed after connect " ) ;
// Queue memory transactions to delete
// Queue memory transactions to delete
BOOST_FOREACH ( const CTransaction & tx , pblock - > vtx )
BOOST_FOREACH ( const CTransaction & tx , pblock - > vtx )
@ -1657,11 +1641,10 @@ bool CBlock::SetBestChain(CBlockIndex* pindexNew)
}
}
// Make sure it's successfully written to disk before changing memory structure
// Make sure it's successfully written to disk before changing memory structure
bool fIsInitialDownload = IsInitialBlockDownload ( ) ;
if ( ! fIsInitialDownload | | view . GetCacheSize ( ) > 5000 )
if ( ! view . Flush ( ) )
if ( ! view . Flush ( ) )
return error ( " SetBestBlock() : failed to write coin changes " ) ;
return false ;
if ( ! coinsdb . TxnCommit ( ) )
return error ( " SetBestBlock() : TxnCommit failed " ) ;
coinsdb . Close ( ) ;
// At this point, all changes have been done to the database.
// At this point, all changes have been done to the database.
// Proceed by updating the memory structures.
// Proceed by updating the memory structures.
@ -1678,14 +1661,13 @@ bool CBlock::SetBestChain(CBlockIndex* pindexNew)
// Resurrect memory transactions that were in the disconnected branch
// Resurrect memory transactions that were in the disconnected branch
BOOST_FOREACH ( CTransaction & tx , vResurrect )
BOOST_FOREACH ( CTransaction & tx , vResurrect )
tx . AcceptToMemoryPool ( coinsdb , false ) ;
tx . AcceptToMemoryPool ( false ) ;
// Delete redundant memory transactions that are in the connected branch
// Delete redundant memory transactions that are in the connected branch
BOOST_FOREACH ( CTransaction & tx , vDelete )
BOOST_FOREACH ( CTransaction & tx , vDelete )
mempool . remove ( tx ) ;
mempool . remove ( tx ) ;
// Update best block in wallet (so we can detect restored wallets)
// Update best block in wallet (so we can detect restored wallets)
bool fIsInitialDownload = IsInitialBlockDownload ( ) ;
if ( ! fIsInitialDownload )
if ( ! fIsInitialDownload )
{
{
const CBlockLocator locator ( pindexNew ) ;
const CBlockLocator locator ( pindexNew ) ;
@ -1765,11 +1747,8 @@ bool CBlock::AddToBlockIndex(const CDiskBlockPos &pos)
return false ;
return false ;
// New best
// New best
if ( pindexNew - > bnChainWork > bnBestChainWork ) {
if ( ! IsInitialBlockDownload ( ) | | ( pindexNew - > nHeight % 1 ) = = 0 )
if ( ! SetBestChain ( pindexNew ) )
if ( ! SetBestChain ( pindexNew ) )
return false ;
return false ;
}
if ( pindexNew = = pindexBest )
if ( pindexNew = = pindexBest )
{
{
@ -2169,11 +2148,9 @@ bool LoadBlockIndex(bool fAllowNew)
// Load block index
// Load block index
//
//
CChainDB chaindb ( " cr " ) ;
CChainDB chaindb ( " cr " ) ;
CCoinsDB coinsdb ( " cr " ) ;
if ( ! LoadBlockIndex ( chaindb ) )
if ( ! LoadBlockIndex ( coinsdb , chaindb ) )
return false ;
return false ;
chaindb . Close ( ) ;
chaindb . Close ( ) ;
coinsdb . Close ( ) ;
//
//
// Init with genesis block
// Init with genesis block
@ -2492,7 +2469,7 @@ string GetWarnings(string strFor)
//
//
bool static AlreadyHave ( CCoinsDB & coinsdb , const CInv & inv )
bool static AlreadyHave ( const CInv & inv )
{
{
switch ( inv . type )
switch ( inv . type )
{
{
@ -2504,7 +2481,7 @@ bool static AlreadyHave(CCoinsDB &coinsdb, const CInv& inv)
txInMap = mempool . exists ( inv . hash ) ;
txInMap = mempool . exists ( inv . hash ) ;
}
}
return txInMap | | mapOrphanTransactions . count ( inv . hash ) | |
return txInMap | | mapOrphanTransactions . count ( inv . hash ) | |
coinsdb . HaveCoins ( inv . hash ) ;
pcoinsTip - > HaveCoins ( inv . hash ) ;
}
}
case MSG_BLOCK :
case MSG_BLOCK :
return mapBlockIndex . count ( inv . hash ) | |
return mapBlockIndex . count ( inv . hash ) | |
@ -2748,7 +2725,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
break ;
break ;
}
}
}
}
CCoinsDB coinsdb ( " r " ) ;
for ( unsigned int nInv = 0 ; nInv < vInv . size ( ) ; nInv + + )
for ( unsigned int nInv = 0 ; nInv < vInv . size ( ) ; nInv + + )
{
{
const CInv & inv = vInv [ nInv ] ;
const CInv & inv = vInv [ nInv ] ;
@ -2757,7 +2733,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
return true ;
return true ;
pfrom - > AddInventoryKnown ( inv ) ;
pfrom - > AddInventoryKnown ( inv ) ;
bool fAlreadyHave = AlreadyHave ( coinsdb , inv ) ;
bool fAlreadyHave = AlreadyHave ( inv ) ;
if ( fDebug )
if ( fDebug )
printf ( " got inventory: %s %s \n " , inv . ToString ( ) . c_str ( ) , fAlreadyHave ? " have " : " new " ) ;
printf ( " got inventory: %s %s \n " , inv . ToString ( ) . c_str ( ) , fAlreadyHave ? " have " : " new " ) ;
@ -2929,7 +2905,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
vector < uint256 > vWorkQueue ;
vector < uint256 > vWorkQueue ;
vector < uint256 > vEraseQueue ;
vector < uint256 > vEraseQueue ;
CDataStream vMsg ( vRecv ) ;
CDataStream vMsg ( vRecv ) ;
CCoinsDB coinsdb ( " r " ) ;
CTransaction tx ;
CTransaction tx ;
vRecv > > tx ;
vRecv > > tx ;
@ -2937,7 +2912,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
pfrom - > AddInventoryKnown ( inv ) ;
pfrom - > AddInventoryKnown ( inv ) ;
bool fMissingInputs = false ;
bool fMissingInputs = false ;
if ( tx . AcceptToMemoryPool ( coinsdb , true , & fMissingInputs ) )
if ( tx . AcceptToMemoryPool ( true , & fMissingInputs ) )
{
{
SyncWithWallets ( tx , NULL , true ) ;
SyncWithWallets ( tx , NULL , true ) ;
RelayMessage ( inv , vMsg ) ;
RelayMessage ( inv , vMsg ) ;
@ -2959,7 +2934,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
CInv inv ( MSG_TX , tx . GetHash ( ) ) ;
CInv inv ( MSG_TX , tx . GetHash ( ) ) ;
bool fMissingInputs2 = false ;
bool fMissingInputs2 = false ;
if ( tx . AcceptToMemoryPool ( coinsdb , true , & fMissingInputs2 ) )
if ( tx . AcceptToMemoryPool ( true , & fMissingInputs2 ) )
{
{
printf ( " accepted orphan tx %s \n " , inv . hash . ToString ( ) . substr ( 0 , 10 ) . c_str ( ) ) ;
printf ( " accepted orphan tx %s \n " , inv . hash . ToString ( ) . substr ( 0 , 10 ) . c_str ( ) ) ;
SyncWithWallets ( tx , NULL , true ) ;
SyncWithWallets ( tx , NULL , true ) ;
@ -3407,11 +3382,10 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
//
//
vector < CInv > vGetData ;
vector < CInv > vGetData ;
int64 nNow = GetTime ( ) * 1000000 ;
int64 nNow = GetTime ( ) * 1000000 ;
CCoinsDB coinsdb ( " r " ) ;
while ( ! pto - > mapAskFor . empty ( ) & & ( * pto - > mapAskFor . begin ( ) ) . first < = nNow )
while ( ! pto - > mapAskFor . empty ( ) & & ( * pto - > mapAskFor . begin ( ) ) . first < = nNow )
{
{
const CInv & inv = ( * pto - > mapAskFor . begin ( ) ) . second ;
const CInv & inv = ( * pto - > mapAskFor . begin ( ) ) . second ;
if ( ! AlreadyHave ( coinsdb , inv ) )
if ( ! AlreadyHave ( inv ) )
{
{
if ( fDebugNet )
if ( fDebugNet )
printf ( " sending getdata: %s \n " , inv . ToString ( ) . c_str ( ) ) ;
printf ( " sending getdata: %s \n " , inv . ToString ( ) . c_str ( ) ) ;
@ -3621,9 +3595,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey)
int64 nFees = 0 ;
int64 nFees = 0 ;
{
{
LOCK2 ( cs_main , mempool . cs ) ;
LOCK2 ( cs_main , mempool . cs ) ;
CCoinsDB coinsdb ( " r " ) ;
CCoinsViewCache view ( * pcoinsTip , true ) ;
CCoinsViewDB viewdb ( coinsdb ) ;
CCoinsViewCache view ( viewdb ) ;
// Priority order to process transactions
// Priority order to process transactions
list < COrphan > vOrphan ; // list memory doesn't move
list < COrphan > vOrphan ; // list memory doesn't move
@ -3811,7 +3783,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey)
CBlockIndex indexDummy ( * pblock ) ;
CBlockIndex indexDummy ( * pblock ) ;
indexDummy . pprev = pindexPrev ;
indexDummy . pprev = pindexPrev ;
indexDummy . nHeight = pindexPrev - > nHeight + 1 ;
indexDummy . nHeight = pindexPrev - > nHeight + 1 ;
CCoinsViewCache viewNew ( viewdb ) ;
CCoinsViewCache viewNew ( * pcoinsTip , true ) ;
if ( ! pblock - > ConnectBlock ( & indexDummy , viewNew , true ) )
if ( ! pblock - > ConnectBlock ( & indexDummy , viewNew , true ) )
throw std : : runtime_error ( " CreateNewBlock() : ConnectBlock failed " ) ;
throw std : : runtime_error ( " CreateNewBlock() : ConnectBlock failed " ) ;
}
}