![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
The basic transaction that is broadcasted on the network and contained in blocks. More...
#include <main.h>
Public Member Functions | |
CTransaction () | |
IMPLEMENT_SERIALIZE (READWRITE(this->nVersion);nVersion=this->nVersion;READWRITE(vin);READWRITE(vout);READWRITE(nLockTime);) void SetNull() | |
bool | IsNull () const |
uint256 | GetHash () const |
bool | IsFinal (int nBlockHeight=0, int64 nBlockTime=0) const |
bool | IsNewerThan (const CTransaction &old) const |
bool | IsCoinBase () const |
bool | IsStandard (std::string &strReason) const |
Check for standard transaction types. More... | |
bool | IsStandard () const |
bool | AreInputsStandard (CCoinsViewCache &mapInputs) const |
Check for standard transaction types. More... | |
unsigned int | GetLegacySigOpCount () const |
Count ECDSA signature operations the old-fashioned (pre-0.6) way. More... | |
unsigned int | GetP2SHSigOpCount (CCoinsViewCache &mapInputs) const |
Count ECDSA signature operations in pay-to-script-hash inputs. More... | |
int64 | GetValueOut () const |
Amount of bitcoins spent by this transaction. More... | |
int64 | GetValueIn (CCoinsViewCache &mapInputs) const |
Amount of bitcoins coming in to this transaction Note that lightweight clients may not know anything besides the hash of previous transactions, so may not be able to calculate this. More... | |
void | UpdateCoins (const CTransaction &tx, CValidationState &state, CCoinsViewCache &inputs, CTxUndo &txundo, int nHeight, const uint256 &txhash) |
int64 | GetMinFee (unsigned int nBlockSize=1, bool fAllowFree=true, enum GetMinFee_mode mode=GMF_BLOCK) const |
std::string | ToString () const |
void | print () const |
bool | HaveInputs (CCoinsViewCache &view) const |
bool | CheckInputs (CValidationState &state, CCoinsViewCache &view, bool fScriptChecks=true, unsigned int flags=SCRIPT_VERIFY_P2SH|SCRIPT_VERIFY_STRICTENC, std::vector< CScriptCheck > *pvChecks=NULL) const |
void | UpdateCoins (CValidationState &state, CCoinsViewCache &view, CTxUndo &txundo, int nHeight, const uint256 &txhash) const |
bool | CheckTransaction (CValidationState &state) const |
bool | AcceptToMemoryPool (CValidationState &state, bool fCheckInputs=true, bool fLimitFree=true, bool *pfMissingInputs=NULL) |
Static Public Member Functions | |
static bool | AllowFree (double dPriority) |
Public Attributes | |
int | nVersion |
std::vector< CTxIn > | vin |
std::vector< CTxOut > | vout |
unsigned int | nLockTime |
Static Public Attributes | |
static int64 | nMinTxFee = 2000000 |
Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) More... | |
static int64 | nMinRelayTxFee = 2000000 |
Fees smaller than this (in satoshi) are considered zero fee (for relaying) More... | |
static const int | CURRENT_VERSION =1 |
Static Protected Member Functions | |
static const CTxOut & | GetOutputFor (const CTxIn &input, CCoinsViewCache &mapInputs) |
Friends | |
bool | operator== (const CTransaction &a, const CTransaction &b) |
bool | operator!= (const CTransaction &a, const CTransaction &b) |
The basic transaction that is broadcasted on the network and contained in blocks.
A transaction can contain multiple inputs and outputs.
bool CTransaction::AcceptToMemoryPool | ( | CValidationState & | state, |
bool | fCheckInputs = true , |
||
bool | fLimitFree = true , |
||
bool * | pfMissingInputs = NULL |
||
) |
|
inlinestatic |
bool CTransaction::AreInputsStandard | ( | CCoinsViewCache & | mapInputs | ) | const |
bool CTransaction::CheckInputs | ( | CValidationState & | state, |
CCoinsViewCache & | view, | ||
bool | fScriptChecks = true , |
||
unsigned int | flags = SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_STRICTENC , |
||
std::vector< CScriptCheck > * | pvChecks = NULL |
||
) | const |
bool CTransaction::CheckTransaction | ( | CValidationState & | state | ) | const |
unsigned int CTransaction::GetLegacySigOpCount | ( | ) | const |
int64 CTransaction::GetMinFee | ( | unsigned int | nBlockSize = 1 , |
bool | fAllowFree = true , |
||
enum GetMinFee_mode | mode = GMF_BLOCK |
||
) | const |
|
staticprotected |
unsigned int CTransaction::GetP2SHSigOpCount | ( | CCoinsViewCache & | mapInputs | ) | const |
int64 CTransaction::GetValueIn | ( | CCoinsViewCache & | mapInputs | ) | const |
Amount of bitcoins coming in to this transaction Note that lightweight clients may not know anything besides the hash of previous transactions, so may not be able to calculate this.
[in] | mapInputs | Map of previous transactions that have outputs we're spending |
|
inline |
bool CTransaction::HaveInputs | ( | CCoinsViewCache & | view | ) | const |
|
inline |
|
inline |
bool CTransaction::IsStandard | ( | std::string & | strReason | ) | const |
Check for standard transaction types.
void CTransaction::UpdateCoins | ( | const CTransaction & | tx, |
CValidationState & | state, | ||
CCoinsViewCache & | inputs, | ||
CTxUndo & | txundo, | ||
int | nHeight, | ||
const uint256 & | txhash | ||
) |
void CTransaction::UpdateCoins | ( | CValidationState & | state, |
CCoinsViewCache & | view, | ||
CTxUndo & | txundo, | ||
int | nHeight, | ||
const uint256 & | txhash | ||
) | const |
|
friend |
|
friend |
|
static |
|
static |