![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
#include "bignum.h"
#include "sync.h"
#include "net.h"
#include "script.h"
#include "scrypt.h"
#include <list>
Go to the source code of this file.
Classes | |
struct | CDiskBlockPos |
struct | CDiskTxPos |
class | CInPoint |
An inpoint - a combination of a transaction and an index n into its vin. More... | |
class | COutPoint |
An outpoint - a combination of a transaction hash and an index n into its vout. More... | |
class | CTxIn |
An input of a transaction. More... | |
class | CTxOut |
An output of a transaction. More... | |
class | CTransaction |
The basic transaction that is broadcasted on the network and contained in blocks. More... | |
class | CTxOutCompressor |
wrapper for CTxOut that provides a more compact serialization More... | |
class | CTxInUndo |
Undo information for a CTxIn. More... | |
class | CTxUndo |
Undo information for a CTransaction. More... | |
class | CBlockUndo |
Undo information for a CBlock. More... | |
class | CCoins |
pruned version of CTransaction: only retains metadata and unspent transaction outputs More... | |
class | CScriptCheck |
Closure representing one script verification Note that this stores references to the spending transaction. More... | |
class | CMerkleTx |
A transaction with a merkle branch linking it to the block chain. More... | |
class | CPartialMerkleTree |
Data structure that represents a partial merkle tree. More... | |
class | CBlockHeader |
Nodes collect new transactions into a block, hash them into a hash tree, and scan through nonce values to make the block's hash satisfy proof-of-work requirements. More... | |
class | CBlock |
class | CBlockFileInfo |
class | CBlockIndex |
The block chain is a tree shaped structure starting with the genesis block at the root, with each block potentially having multiple candidates to be the next block. More... | |
struct | CBlockIndexWorkComparator |
class | CDiskBlockIndex |
Used to marshal pointers into hashes for db storage. More... | |
class | CValidationState |
Capture information about block/transaction validation. More... | |
class | CBlockLocator |
Describes a place in the block chain to another node such that if the other node doesn't have the same branch, it can find a recent common trunk. More... | |
class | CTxMemPool |
struct | CCoinsStats |
class | CCoinsView |
Abstract view on the open txout dataset. More... | |
class | CCoinsViewBacked |
CCoinsView backed by another CCoinsView. More... | |
class | CCoinsViewCache |
CCoinsView that adds a memory cache for transactions to another CCoinsView. More... | |
class | CCoinsViewMemPool |
CCoinsView that brings transactions from a memorypool into view. More... | |
struct | CBlockTemplate |
class | CMerkleBlock |
Used to relay blocks as header + vector<merkle branch> to filtered nodes. More... | |
Enumerations | |
enum | GetMinFee_mode { GMF_BLOCK, GMF_RELAY, GMF_SEND } |
enum | BlockStatus { BLOCK_VALID_UNKNOWN = 0, BLOCK_VALID_HEADER = 1, BLOCK_VALID_TREE = 2, BLOCK_VALID_TRANSACTIONS = 3, BLOCK_VALID_CHAIN = 4, BLOCK_VALID_SCRIPTS = 5, BLOCK_VALID_MASK = 7, BLOCK_HAVE_DATA = 8, BLOCK_HAVE_UNDO = 16, BLOCK_HAVE_MASK = 24, BLOCK_FAILED_VALID = 32, BLOCK_FAILED_CHILD = 64, BLOCK_FAILED_MASK = 96 } |
Functions | |
bool | MoneyRange (int64 nValue) |
void | RegisterWallet (CWallet *pwalletIn) |
Register a wallet to receive updates from core. More... | |
void | UnregisterWallet (CWallet *pwalletIn) |
Unregister a wallet from core. More... | |
void | SyncWithWallets (const uint256 &hash, const CTransaction &tx, const CBlock *pblock=NULL, bool fUpdate=false) |
Push an updated transaction to all registered wallets. More... | |
bool | ProcessBlock (CValidationState &state, CNode *pfrom, CBlock *pblock, CDiskBlockPos *dbp=NULL) |
Process an incoming block. More... | |
bool | CheckDiskSpace (uint64 nAdditionalBytes=0) |
Check whether enough disk space is available for an incoming block. More... | |
FILE * | OpenBlockFile (const CDiskBlockPos &pos, bool fReadOnly=false) |
Open a block file (blk?????.dat) More... | |
FILE * | OpenUndoFile (const CDiskBlockPos &pos, bool fReadOnly=false) |
Open an undo file (rev?????.dat) More... | |
bool | LoadExternalBlockFile (FILE *fileIn, CDiskBlockPos *dbp=NULL) |
Import blocks from an external file. More... | |
bool | InitBlockIndex () |
Initialize a new block tree database + block data on disk. More... | |
bool | LoadBlockIndex () |
Load the block tree and coins database from disk. More... | |
void | UnloadBlockIndex () |
Unload database information. More... | |
bool | VerifyDB (int nCheckLevel, int nCheckDepth) |
Verify consistency of the block and coin databases. More... | |
void | PrintBlockTree () |
Print the loaded block tree. More... | |
CBlockIndex * | FindBlockByHeight (int nHeight) |
Find a block by height in the currently-connected chain. More... | |
bool | ProcessMessages (CNode *pfrom) |
Process protocol messages received from a given node. More... | |
bool | SendMessages (CNode *pto, bool fSendTrickle) |
Send queued protocol messages to be sent to a give node. More... | |
void | ThreadScriptCheck () |
Run an instance of the script checking thread. More... | |
void | GenerateBitcoins (bool fGenerate, CWallet *pwallet) |
Run the miner threads. More... | |
CBlockTemplate * | CreateNewBlock (const CScript &scriptPubKeyIn) |
Generate a new block, without valid proof-of-work. More... | |
CBlockTemplate * | CreateNewBlockWithKey (CReserveKey &reservekey) |
void | IncrementExtraNonce (CBlock *pblock, CBlockIndex *pindexPrev, unsigned int &nExtraNonce) |
Modify the extranonce in a block. More... | |
void | FormatHashBuffers (CBlock *pblock, char *pmidstate, char *pdata, char *phash1) |
Do mining precalculation. More... | |
bool | CheckWork (CBlock *pblock, CWallet &wallet, CReserveKey &reservekey) |
Check mined block. More... | |
bool | CheckProofOfWork (uint256 hash, unsigned int nBits) |
Check whether a block hash satisfies the proof-of-work requirement specified by nBits. More... | |
unsigned int | ComputeMinWork (unsigned int nBase, int64 nTime) |
Calculate the minimum amount of work a received block needs, without knowing its direct parent. More... | |
int | GetNumBlocksOfPeers () |
Get the number of active peers. More... | |
bool | IsInitialBlockDownload () |
Check whether we are doing an initial block download (synchronizing from disk or network) More... | |
std::string | GetWarnings (std::string strFor) |
Format a string that describes several potential problems detected by the core. More... | |
bool | GetTransaction (const uint256 &hash, CTransaction &tx, uint256 &hashBlock, bool fAllowSlow=false) |
Retrieve a transaction (from memory pool, or from disk, if possible) More... | |
bool | SetBestChain (CValidationState &state, CBlockIndex *pindexNew) |
Connect/disconnect blocks until pindexNew is the new tip of the active block chain. More... | |
bool | ConnectBestBlock (CValidationState &state) |
Find the best known block, and make it the tip of the block chain. More... | |
CBlockIndex * | InsertBlockIndex (uint256 hash) |
Create a new block index entry for a given block hash. More... | |
bool | VerifySignature (const CCoins &txFrom, const CTransaction &txTo, unsigned int nIn, unsigned int flags, int nHashType) |
Verify a signature. More... | |
bool | AbortNode (const std::string &msg) |
Abort with a message. More... | |
bool | GetWalletFile (CWallet *pwallet, std::string &strWalletFileOut) |
enum BlockStatus |
enum GetMinFee_mode |
bool AbortNode | ( | const std::string & | msg | ) |
bool CheckDiskSpace | ( | uint64 | nAdditionalBytes = 0 | ) |
bool CheckProofOfWork | ( | uint256 | hash, |
unsigned int | nBits | ||
) |
bool CheckWork | ( | CBlock * | pblock, |
CWallet & | wallet, | ||
CReserveKey & | reservekey | ||
) |
unsigned int ComputeMinWork | ( | unsigned int | nBase, |
int64 | nTime | ||
) |
Calculate the minimum amount of work a received block needs, without knowing its direct parent.
bool ConnectBestBlock | ( | CValidationState & | state | ) |
CBlockTemplate* CreateNewBlock | ( | const CScript & | scriptPubKeyIn | ) |
CBlockTemplate* CreateNewBlockWithKey | ( | CReserveKey & | reservekey | ) |
CBlockIndex* FindBlockByHeight | ( | int | nHeight | ) |
void FormatHashBuffers | ( | CBlock * | pblock, |
char * | pmidstate, | ||
char * | pdata, | ||
char * | phash1 | ||
) |
void GenerateBitcoins | ( | bool | fGenerate, |
CWallet * | pwallet | ||
) |
int GetNumBlocksOfPeers | ( | ) |
bool GetTransaction | ( | const uint256 & | hash, |
CTransaction & | tx, | ||
uint256 & | hashBlock, | ||
bool | fAllowSlow = false |
||
) |
bool GetWalletFile | ( | CWallet * | pwallet, |
std::string & | strWalletFileOut | ||
) |
std::string GetWarnings | ( | std::string | strFor | ) |
Format a string that describes several potential problems detected by the core.
void IncrementExtraNonce | ( | CBlock * | pblock, |
CBlockIndex * | pindexPrev, | ||
unsigned int & | nExtraNonce | ||
) |
bool InitBlockIndex | ( | ) |
CBlockIndex* InsertBlockIndex | ( | uint256 | hash | ) |
bool IsInitialBlockDownload | ( | ) |
bool LoadBlockIndex | ( | ) |
bool LoadExternalBlockFile | ( | FILE * | fileIn, |
CDiskBlockPos * | dbp = NULL |
||
) |
FILE* OpenBlockFile | ( | const CDiskBlockPos & | pos, |
bool | fReadOnly = false |
||
) |
FILE* OpenUndoFile | ( | const CDiskBlockPos & | pos, |
bool | fReadOnly = false |
||
) |
bool ProcessBlock | ( | CValidationState & | state, |
CNode * | pfrom, | ||
CBlock * | pblock, | ||
CDiskBlockPos * | dbp = NULL |
||
) |
bool ProcessMessages | ( | CNode * | pfrom | ) |
void RegisterWallet | ( | CWallet * | pwalletIn | ) |
bool SendMessages | ( | CNode * | pto, |
bool | fSendTrickle | ||
) |
bool SetBestChain | ( | CValidationState & | state, |
CBlockIndex * | pindexNew | ||
) |
void SyncWithWallets | ( | const uint256 & | hash, |
const CTransaction & | tx, | ||
const CBlock * | pblock = NULL , |
||
bool | fUpdate = false |
||
) |
void ThreadScriptCheck | ( | ) |
void UnregisterWallet | ( | CWallet * | pwalletIn | ) |
bool VerifyDB | ( | int | nCheckLevel, |
int | nCheckDepth | ||
) |
bool VerifySignature | ( | const CCoins & | txFrom, |
const CTransaction & | txTo, | ||
unsigned int | nIn, | ||
unsigned int | flags, | ||
int | nHashType | ||
) |
CCriticalSection cs_LastBlockFile |
CCriticalSection cs_main |
CCriticalSection cs_setpwalletRegistered |
uint256 hashGenesisBlock |
CBlockFileInfo infoLastBlockFile |
std::map<uint256, CBlockIndex*> mapBlockIndex |
CTxMemPool mempool |
CBlockTreeDB* pblocktree |
CCoinsViewCache* pcoinsTip |
Global variable that points to the active CCoinsView (protected by cs_main)
CBlockIndex* pindexBest |
CBlockIndex* pindexGenesisBlock |
std::set<CBlockIndex*, CBlockIndexWorkComparator> setBlockIndexValid |