diff options
| author | Lauda <[email protected]> | 2017-01-13 16:05:16 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-01-22 13:18:51 +0100 |
| commit | 5c66d41b7ffe8557ce5036613c9854d2f1dc3c37 (patch) | |
| tree | 665a4171ec4582a2d4ba91989a26ab5dd2dc34bf /src/test/test_bitcoin.cpp | |
| parent | Merge #9525: test: Include tx data in EXTRA_DIST (diff) | |
| download | discoin-5c66d41b7ffe8557ce5036613c9854d2f1dc3c37.tar.xz discoin-5c66d41b7ffe8557ce5036613c9854d2f1dc3c37.zip | |
[Trivial] Grammar and typo correction
Minor corrections in src\test\* .
Diffstat (limited to 'src/test/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index f0eaab221..4785415e3 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -147,7 +147,7 @@ CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CMutableTransaction &tx, CT } CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CTransaction &txn, CTxMemPool *pool) { - // Hack to assume either its completely dependent on other mempool txs or not at all + // Hack to assume either it's completely dependent on other mempool txs or not at all CAmount inChainValue = pool && pool->HasNoInputsOf(txn) ? txn.GetValueOut() : 0; return CTxMemPoolEntry(MakeTransactionRef(txn), nFee, nTime, dPriority, nHeight, |