diff options
author | Lauda <lauda.m@protonmail.ch> | 2017-01-13 16:05:16 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-01-22 13:18:51 +0100 |
commit | 5c66d41b7ffe8557ce5036613c9854d2f1dc3c37 (patch) | |
tree | 665a4171ec4582a2d4ba91989a26ab5dd2dc34bf /src/test/test_bitcoin.cpp | |
parent | 02e5308c1b9f3771bbe49bc5036215fa2bd66aa9 (diff) |
[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 f0eaab2217..4785415e3c 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, |