![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
An input of a transaction. More...
#include <main.h>
Public Member Functions | |
CTxIn () | |
CTxIn (COutPoint prevoutIn, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=std::numeric_limits< unsigned int >::max()) | |
CTxIn (uint256 hashPrevTx, unsigned int nOut, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=std::numeric_limits< unsigned int >::max()) | |
IMPLEMENT_SERIALIZE (READWRITE(prevout);READWRITE(scriptSig);READWRITE(nSequence);) bool IsFinal() const | |
std::string | ToString () const |
void | print () const |
Public Attributes | |
COutPoint | prevout |
CScript | scriptSig |
unsigned int | nSequence |
Friends | |
bool | operator== (const CTxIn &a, const CTxIn &b) |
bool | operator!= (const CTxIn &a, const CTxIn &b) |
An input of a transaction.
It contains the location of the previous transaction's output that it claims and a signature that matches the output's public key.