Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Public Attributes | Private Attributes | List of all members
CWalletTx Class Reference

A transaction with a bunch of additional info that only the owner cares about. More...

#include <wallet.h>

Inheritance diagram for CWalletTx:
Inheritance graph
[legend]
Collaboration diagram for CWalletTx:
Collaboration graph
[legend]

Public Member Functions

 CWalletTx ()
 
 CWalletTx (const CWallet *pwalletIn)
 
 CWalletTx (const CWallet *pwalletIn, const CMerkleTx &txIn)
 
 CWalletTx (const CWallet *pwalletIn, const CTransaction &txIn)
 
void Init (const CWallet *pwalletIn)
 
 IMPLEMENT_SERIALIZE (CWalletTx *pthis=const_cast< CWalletTx * >(this);if(fRead) pthis->Init(NULL);char fSpent=false;if(!fRead){pthis->mapValue["fromaccount"]=pthis->strFromAccount;std::string str;BOOST_FOREACH(char f, vfSpent){str+=(f? '1': '0');if(f) fSpent=true;}pthis->mapValue["spent"]=str;WriteOrderPos(pthis->nOrderPos, pthis->mapValue);if(nTimeSmart) pthis->mapValue["timesmart"]=strprintf("%u", nTimeSmart);}nSerSize+=SerReadWrite(s,*(CMerkleTx *) this, nType, nVersion, ser_action);READWRITE(vtxPrev);READWRITE(mapValue);READWRITE(vOrderForm);READWRITE(fTimeReceivedIsTxTime);READWRITE(nTimeReceived);READWRITE(fFromMe);READWRITE(fSpent);if(fRead){pthis->strFromAccount=pthis->mapValue["fromaccount"];if(mapValue.count("spent")) pthis->vfSpent.push_back(c!= '0');else pthis->vfSpent.assign(vout.size(), fSpent);ReadOrderPos(pthis->nOrderPos, pthis->mapValue);pthis->nTimeSmart=mapValue.count("timesmart")?(unsigned int) atoi64(pthis->mapValue["timesmart"]):0;}pthis->mapValue.erase("fromaccount");pthis->mapValue.erase("version");pthis->mapValue.erase("spent");pthis->mapValue.erase("n");pthis->mapValue.erase("timesmart");) bool UpdateSpent(const std
 
void MarkDirty ()
 
void BindWallet (CWallet *pwalletIn)
 
void MarkSpent (unsigned int nOut)
 
bool IsSpent (unsigned int nOut) const
 
int64 GetDebit () const
 
int64 GetCredit (bool fUseCache=true) const
 
int64 GetImmatureCredit (bool fUseCache=true) const
 
int64 GetAvailableCredit (bool fUseCache=true) const
 
int64 GetChange () const
 
void GetAmounts (std::list< std::pair< CTxDestination, int64 > > &listReceived, std::list< std::pair< CTxDestination, int64 > > &listSent, int64 &nFee, std::string &strSentAccount) const
 
void GetAccountAmounts (const std::string &strAccount, int64 &nReceived, int64 &nSent, int64 &nFee) const
 
bool IsFromMe () const
 
bool IsConfirmed () const
 
bool WriteToDisk ()
 
int64 GetTxTime () const
 
int GetRequestCount () const
 
void AddSupportingTransactions ()
 
bool AcceptWalletTransaction (bool fCheckInputs=true)
 
void RelayWalletTransaction ()
 
- Public Member Functions inherited from CMerkleTx
 CMerkleTx ()
 
 CMerkleTx (const CTransaction &txIn)
 
void Init ()
 
 IMPLEMENT_SERIALIZE (nSerSize+=SerReadWrite(s,*(CTransaction *) this, nType, nVersion, ser_action);nVersion=this->nVersion;READWRITE(hashBlock);READWRITE(vMerkleBranch);READWRITE(nIndex);) int SetMerkleBranch(const CBlock *pblock
 
int GetDepthInMainChain (CBlockIndex *&pindexRet) const
 
int GetDepthInMainChain () const
 
bool IsInMainChain () const
 
int GetBlocksToMaturity () const
 
bool AcceptToMemoryPool (bool fCheckInputs=true, bool fLimitFree=true)
 
- Public Member Functions inherited from CTransaction
 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)
 

Public Attributes

std::vector< CMerkleTxvtxPrev
 
mapValue_t mapValue
 
std::vector< std::pair
< std::string, std::string > > 
vOrderForm
 
unsigned int fTimeReceivedIsTxTime
 
unsigned int nTimeReceived
 
unsigned int nTimeSmart
 
char fFromMe
 
std::string strFromAccount
 
std::vector< char > vfSpent
 
int64 nOrderPos
 
bool fDebitCached
 
bool fCreditCached
 
bool fImmatureCreditCached
 
bool fAvailableCreditCached
 
bool fChangeCached
 
int64 nDebitCached
 
int64 nCreditCached
 
int64 nImmatureCreditCached
 
int64 nAvailableCreditCached
 
int64 nChangeCached
 
- Public Attributes inherited from CMerkleTx
uint256 hashBlock
 
std::vector< uint256vMerkleBranch
 
int nIndex
 
bool fMerkleVerified
 
- Public Attributes inherited from CTransaction
int nVersion
 
std::vector< CTxInvin
 
std::vector< CTxOutvout
 
unsigned int nLockTime
 

Private Attributes

const CWalletpwallet
 

Additional Inherited Members

- Static Public Member Functions inherited from CTransaction
static bool AllowFree (double dPriority)
 
- Static Public Attributes inherited from CTransaction
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 inherited from CTransaction
static const CTxOutGetOutputFor (const CTxIn &input, CCoinsViewCache &mapInputs)
 

Detailed Description

A transaction with a bunch of additional info that only the owner cares about.

It includes any unrecorded transactions needed to link it back to the block chain.

Definition at line 367 of file wallet.h.

Constructor & Destructor Documentation

CWalletTx::CWalletTx ( )
inline

Definition at line 396 of file wallet.h.

CWalletTx::CWalletTx ( const CWallet pwalletIn)
inline

Definition at line 401 of file wallet.h.

CWalletTx::CWalletTx ( const CWallet pwalletIn,
const CMerkleTx txIn 
)
inline

Definition at line 406 of file wallet.h.

CWalletTx::CWalletTx ( const CWallet pwalletIn,
const CTransaction txIn 
)
inline

Definition at line 411 of file wallet.h.

Member Function Documentation

bool CWalletTx::AcceptWalletTransaction ( bool  fCheckInputs = true)

Definition at line 947 of file main.cpp.

void CWalletTx::AddSupportingTransactions ( )

Definition at line 712 of file wallet.cpp.

void CWalletTx::BindWallet ( CWallet pwalletIn)
inline

Definition at line 527 of file wallet.h.

void CWalletTx::GetAccountAmounts ( const std::string &  strAccount,
int64 nReceived,
int64 nSent,
int64 nFee 
) const

Definition at line 677 of file wallet.cpp.

void CWalletTx::GetAmounts ( std::list< std::pair< CTxDestination, int64 > > &  listReceived,
std::list< std::pair< CTxDestination, int64 > > &  listSent,
int64 nFee,
std::string &  strSentAccount 
) const

Definition at line 637 of file wallet.cpp.

int64 CWalletTx::GetAvailableCredit ( bool  fUseCache = true) const
inline

Definition at line 593 of file wallet.h.

int64 CWalletTx::GetChange ( ) const
inline

Definition at line 620 of file wallet.h.

int64 CWalletTx::GetCredit ( bool  fUseCache = true) const
inline

Definition at line 565 of file wallet.h.

int64 CWalletTx::GetDebit ( ) const
inline

Definition at line 554 of file wallet.h.

int64 CWalletTx::GetImmatureCredit ( bool  fUseCache = true) const
inline

Definition at line 579 of file wallet.h.

int CWalletTx::GetRequestCount ( ) const

Definition at line 598 of file wallet.cpp.

int64 CWalletTx::GetTxTime ( ) const

Definition at line 592 of file wallet.cpp.

CWalletTx::IMPLEMENT_SERIALIZE ( CWalletTx pthis = const_cast<CWalletTx*>(this); if (fRead) pthis->Init(NULL); char fSpent = false; if (!fRead) { pthis->mapValue["fromaccount"] = pthis->strFromAccount; std::string str; BOOST_FOREACH(char f, vfSpent) { str += (f ? '1' : '0'); if (f) fSpent = true; } pthis->mapValue["spent"] = str; WriteOrderPos(pthis->nOrderPos, pthis->mapValue); if (nTimeSmart) pthis->mapValue["timesmart"] = strprintf("%u", nTimeSmart); } nSerSize += SerReadWrite(s, *(CMerkleTx*)this, nType, nVersion,ser_action); READWRITE(vtxPrev); READWRITE(mapValue); READWRITE(vOrderForm); READWRITE(fTimeReceivedIsTxTime); READWRITE(nTimeReceived); READWRITE(fFromMe); READWRITE(fSpent); if (fRead) { pthis->strFromAccount = pthis->mapValue["fromaccount"]; if (mapValue.count("spent")) pthis->vfSpent.push_back(c != '0'); else pthis->vfSpent.assign(vout.size(), fSpent); ReadOrderPos(pthis->nOrderPos, pthis->mapValue); pthis->nTimeSmart = mapValue.count("timesmart") ? (unsigned int)atoi64(pthis->mapValue["timesmart"]) : 0; } pthis->mapValue.erase("fromaccount"); pthis->mapValue.erase("version"); pthis->mapValue.erase("spent"); pthis->mapValue.erase("n"); pthis->mapValue.erase("timesmart");) const
inline

Definition at line 442 of file wallet.h.

void CWalletTx::Init ( const CWallet pwalletIn)
inline

Definition at line 416 of file wallet.h.

bool CWalletTx::IsConfirmed ( ) const
inline

Definition at line 640 of file wallet.h.

bool CWalletTx::IsFromMe ( ) const
inline

Definition at line 635 of file wallet.h.

bool CWalletTx::IsSpent ( unsigned int  nOut) const
inline

Definition at line 545 of file wallet.h.

void CWalletTx::MarkDirty ( )
inline

Definition at line 519 of file wallet.h.

void CWalletTx::MarkSpent ( unsigned int  nOut)
inline

Definition at line 533 of file wallet.h.

void CWalletTx::RelayWalletTransaction ( )

Definition at line 850 of file wallet.cpp.

bool CWalletTx::WriteToDisk ( )

Definition at line 766 of file wallet.cpp.

Member Data Documentation

bool CWalletTx::fAvailableCreditCached
mutable

Definition at line 388 of file wallet.h.

bool CWalletTx::fChangeCached
mutable

Definition at line 389 of file wallet.h.

bool CWalletTx::fCreditCached
mutable

Definition at line 386 of file wallet.h.

bool CWalletTx::fDebitCached
mutable

Definition at line 385 of file wallet.h.

char CWalletTx::fFromMe

Definition at line 379 of file wallet.h.

bool CWalletTx::fImmatureCreditCached
mutable

Definition at line 387 of file wallet.h.

unsigned int CWalletTx::fTimeReceivedIsTxTime

Definition at line 376 of file wallet.h.

mapValue_t CWalletTx::mapValue

Definition at line 374 of file wallet.h.

int64 CWalletTx::nAvailableCreditCached
mutable

Definition at line 393 of file wallet.h.

int64 CWalletTx::nChangeCached
mutable

Definition at line 394 of file wallet.h.

int64 CWalletTx::nCreditCached
mutable

Definition at line 391 of file wallet.h.

int64 CWalletTx::nDebitCached
mutable

Definition at line 390 of file wallet.h.

int64 CWalletTx::nImmatureCreditCached
mutable

Definition at line 392 of file wallet.h.

int64 CWalletTx::nOrderPos

Definition at line 382 of file wallet.h.

unsigned int CWalletTx::nTimeReceived

Definition at line 377 of file wallet.h.

unsigned int CWalletTx::nTimeSmart

Definition at line 378 of file wallet.h.

const CWallet* CWalletTx::pwallet
private

Definition at line 370 of file wallet.h.

std::string CWalletTx::strFromAccount

Definition at line 380 of file wallet.h.

std::vector<char> CWalletTx::vfSpent

Definition at line 381 of file wallet.h.

std::vector<std::pair<std::string, std::string> > CWalletTx::vOrderForm

Definition at line 375 of file wallet.h.

std::vector<CMerkleTx> CWalletTx::vtxPrev

Definition at line 373 of file wallet.h.


The documentation for this class was generated from the following files: