|
|
@ -122,7 +122,7 @@ std::string GetWarnings(std::string strFor); |
|
|
|
|
|
|
|
|
|
|
|
bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut); |
|
|
|
bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Position on disk for a particular transaction. */ |
|
|
|
class CDiskTxPos |
|
|
|
class CDiskTxPos |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -174,7 +174,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** An inpoint - a combination of a transaction and an index n into its vin */ |
|
|
|
class CInPoint |
|
|
|
class CInPoint |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -189,7 +189,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** An outpoint - a combination of a transaction hash and an index n into its vout */ |
|
|
|
class COutPoint |
|
|
|
class COutPoint |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -231,11 +231,10 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** An input of a transaction. It contains the location of the previous
|
|
|
|
// An input of a transaction. It contains the location of the previous
|
|
|
|
* transaction's output that it claims and a signature that matches the |
|
|
|
// transaction's output that it claims and a signature that matches the
|
|
|
|
* output's public key. |
|
|
|
// output's public key.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CTxIn |
|
|
|
class CTxIn |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -310,10 +309,9 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** An output of a transaction. It contains the public key that the next input
|
|
|
|
// An output of a transaction. It contains the public key that the next input
|
|
|
|
* must be able to sign with to claim it. |
|
|
|
// must be able to sign with to claim it.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CTxOut |
|
|
|
class CTxOut |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -389,10 +387,9 @@ enum GetMinFee_mode |
|
|
|
|
|
|
|
|
|
|
|
typedef std::map<uint256, std::pair<CTxIndex, CTransaction> > MapPrevTx; |
|
|
|
typedef std::map<uint256, std::pair<CTxIndex, CTransaction> > MapPrevTx; |
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** The basic transaction that is broadcasted on the network and contained in
|
|
|
|
// The basic transaction that is broadcasted on the network and contained in
|
|
|
|
* blocks. A transaction can contain multiple inputs and outputs. |
|
|
|
// blocks. A transaction can contain multiple inputs and outputs.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CTransaction |
|
|
|
class CTransaction |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -699,9 +696,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** A transaction with a merkle branch linking it to the block chain. */ |
|
|
|
// A transaction with a merkle branch linking it to the block chain
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
class CMerkleTx : public CTransaction |
|
|
|
class CMerkleTx : public CTransaction |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -753,11 +748,10 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** A txdb record that contains the disk location of a transaction and the
|
|
|
|
// A txdb record that contains the disk location of a transaction and the
|
|
|
|
* locations of transactions that spend its outputs. vSpent is really only |
|
|
|
// locations of transactions that spend its outputs. vSpent is really only
|
|
|
|
* used as a flag, but having the location is very helpful for debugging. |
|
|
|
// used as a flag, but having the location is very helpful for debugging.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CTxIndex |
|
|
|
class CTxIndex |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -812,17 +806,16 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** Nodes collect new transactions into a block, hash them into a hash tree,
|
|
|
|
// 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 |
|
|
|
// and scan through nonce values to make the block's hash satisfy proof-of-work
|
|
|
|
* requirements. When they solve the proof-of-work, they broadcast the block |
|
|
|
// requirements. When they solve the proof-of-work, they broadcast the block
|
|
|
|
* to everyone and the block is added to the block chain. The first transaction |
|
|
|
// to everyone and the block is added to the block chain. The first transaction
|
|
|
|
* in the block is a special one that creates a new coin owned by the creator |
|
|
|
// in the block is a special one that creates a new coin owned by the creator
|
|
|
|
* of the block. |
|
|
|
// of the block.
|
|
|
|
* |
|
|
|
//
|
|
|
|
* Blocks are appended to blk0001.dat files on disk. Their location on disk |
|
|
|
// Blocks are appended to blk0001.dat files on disk. Their location on disk
|
|
|
|
* is indexed by CBlockIndex objects in memory. |
|
|
|
// is indexed by CBlockIndex objects in memory.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CBlock |
|
|
|
class CBlock |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -1040,14 +1033,13 @@ private: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** The block chain is a tree shaped structure starting with the
|
|
|
|
// The block chain is a tree shaped structure starting with the
|
|
|
|
* genesis block at the root, with each block potentially having multiple |
|
|
|
// genesis block at the root, with each block potentially having multiple
|
|
|
|
* candidates to be the next block. pprev and pnext link a path through the |
|
|
|
// candidates to be the next block. pprev and pnext link a path through the
|
|
|
|
* main/longest chain. A blockindex may have multiple pprev pointing back |
|
|
|
// main/longest chain. A blockindex may have multiple pprev pointing back
|
|
|
|
* to it, but pnext will only point forward to the longest branch, or will |
|
|
|
// to it, but pnext will only point forward to the longest branch, or will
|
|
|
|
* be null if the block is not part of the longest chain. |
|
|
|
// be null if the block is not part of the longest chain.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CBlockIndex |
|
|
|
class CBlockIndex |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -1204,9 +1196,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** Used to marshal pointers into hashes for db storage. */ |
|
|
|
// Used to marshal pointers into hashes for db storage.
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
class CDiskBlockIndex : public CBlockIndex |
|
|
|
class CDiskBlockIndex : public CBlockIndex |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -1281,11 +1271,10 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** Describes a place in the block chain to another node such that if the
|
|
|
|
// 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. |
|
|
|
// other node doesn't have the same branch, it can find a recent common trunk.
|
|
|
|
* The further back it is, the further before the fork it may be. |
|
|
|
// The further back it is, the further before the fork it may be.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CBlockLocator |
|
|
|
class CBlockLocator |
|
|
|
{ |
|
|
|
{ |
|
|
|
protected: |
|
|
|
protected: |
|
|
@ -1417,13 +1406,12 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
/** Alerts are for notifying old versions if they become too obsolete and
|
|
|
|
// Alerts are for notifying old versions if they become too obsolete and
|
|
|
|
* need to upgrade. The message is displayed in the status bar. |
|
|
|
// need to upgrade. The message is displayed in the status bar.
|
|
|
|
* Alert messages are broadcast as a vector of signed data. Unserializing may |
|
|
|
// Alert messages are broadcast as a vector of signed data. Unserializing may
|
|
|
|
* not read the entire buffer if the alert is for a newer version, but older |
|
|
|
// not read the entire buffer if the alert is for a newer version, but older
|
|
|
|
* versions can still relay the original data. |
|
|
|
// versions can still relay the original data.
|
|
|
|
*/ |
|
|
|
//
|
|
|
|
|
|
|
|
class CUnsignedAlert |
|
|
|
class CUnsignedAlert |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
@ -1523,6 +1511,7 @@ public: |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** An alert is a combination of a serialized CUnsignedAlert and a signature. */ |
|
|
|
class CAlert : public CUnsignedAlert |
|
|
|
class CAlert : public CUnsignedAlert |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
|