A transaction with a bunch of additional info that only the owner cares about.
More...
|
| 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 () |
|
| 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) |
|
| 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) |
|
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.