diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-01-22 13:28:14 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-01-22 13:28:43 +0100 |
commit | ff58b1c3bdff5e5f687f10f9e40ce495ca49674e (patch) | |
tree | 98f370c955cee910290661ddefd000110b68e6a9 /src/test/test_bitcoin.cpp | |
parent | 0b96abc35f1a9d46a27eeddd7df418d107c29c57 (diff) | |
parent | 5c66d41b7ffe8557ce5036613c9854d2f1dc3c37 (diff) |
Merge #9610: [Trivial] Grammar and typo correction (laudaa)
5c66d41 [Trivial] Grammar and typo correction (Lauda)
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, |