diff options
| author | jtimon <[email protected]> | 2014-10-17 01:58:43 +0200 |
|---|---|---|
| committer | jtimon <[email protected]> | 2014-10-17 01:58:43 +0200 |
| commit | e8ea0fd19e16abdcc95a0cdd8f9ae1d348a53168 (patch) | |
| tree | 315494b1c449ef4972a7854eec4d1b9f9d3afb7e /src/core.h | |
| parent | Merge pull request #5082 (diff) | |
| download | discoin-e8ea0fd19e16abdcc95a0cdd8f9ae1d348a53168.tar.xz discoin-e8ea0fd19e16abdcc95a0cdd8f9ae1d348a53168.zip | |
MOVEONLY: CInPoint from core to txmempool
Diffstat (limited to 'src/core.h')
| -rw-r--r-- | src/core.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/core.h b/src/core.h index a34829357..a024dad74 100644 --- a/src/core.h +++ b/src/core.h @@ -61,19 +61,6 @@ public: std::string ToString() const; }; -/** An inpoint - a combination of a transaction and an index n into its vin */ -class CInPoint -{ -public: - const CTransaction* ptx; - uint32_t n; - - CInPoint() { SetNull(); } - CInPoint(const CTransaction* ptxIn, uint32_t nIn) { ptx = ptxIn; n = nIn; } - void SetNull() { ptx = NULL; n = (uint32_t) -1; } - bool IsNull() const { return (ptx == NULL && n == (uint32_t) -1); } -}; - /** 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. |