diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-10-05 19:22:21 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-10-21 21:32:25 +0200 |
commit | 729b18068689c1a6805d04117ef05f97502f5062 (patch) | |
tree | 0e1e735343dcac684129e7026fc3c6e80e2ab40a /src/main.h | |
parent | d44f1ea394d3f0f324f7d61e97fec2b7ba2e865f (diff) |
change blockchain -> block chain (spelling)
- Wiki says "block chain" is correct ;)
- remove some unneeded spaces I found in the source, while fixing the spelling
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.h b/src/main.h index 75ee7a9be5..75950109da 100644 --- a/src/main.h +++ b/src/main.h @@ -777,7 +777,7 @@ public: // unspent transaction outputs; spent outputs are .IsNull(); spent outputs at the end of the array are dropped std::vector<CTxOut> vout; - // at which height this transaction was included in the active blockchain + // at which height this transaction was included in the active block chain int nHeight; // version of the CTransaction; accesses to this value should probably check for nHeight as well, @@ -798,7 +798,7 @@ public: // equality test friend bool operator==(const CCoins &a, const CCoins &b) { - return a.fCoinBase == b.fCoinBase && + return a.fCoinBase == b.fCoinBase && a.nHeight == b.nHeight && a.nVersion == b.nVersion && a.vout == b.vout; |