diff options
| author | MarcoFalke <[email protected]> | 2019-11-04 08:01:16 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-11-04 08:03:48 -0500 |
| commit | 73b26e38d7a174d5409dda8aa1fe9804e7779a1f (patch) | |
| tree | 0641ae675fe9b8777105d7c16c57782854cecc8a /src/node/transaction.cpp | |
| parent | Merge #16110: depends: Add Android NDK support (diff) | |
| parent | doc: Fix some misspellings (diff) | |
| download | discoin-73b26e38d7a174d5409dda8aa1fe9804e7779a1f.tar.xz discoin-73b26e38d7a174d5409dda8aa1fe9804e7779a1f.zip | |
Merge #17351: doc: Fix some misspellings
ac831339cbfa65b1f7576c53b5d9a94841db9868 doc: Fix some misspellings (randymcmillan)
Pull request description:
Here is a more thorough lint-spelling update.
This PR takes care of easy to fix spelling errors to clean up the linting stages.
There are misspellings coded into the functional tests.
That is a whole separate job within itself.
ACKs for top commit:
practicalswift:
ACK ac831339cbfa65b1f7576c53b5d9a94841db9868 -- diff looks correct
Tree-SHA512: d8fad83fed083715655f148263ddeffc6752c8007d568fcf3dc2c418ccd5db70089ce3ccfd3994fcbd78043171402eb9cca5bdd5125287e22c42ea305aaa6e9d
Diffstat (limited to 'src/node/transaction.cpp')
| -rw-r--r-- | src/node/transaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/transaction.cpp b/src/node/transaction.cpp index 2da3ecd8e..3c0df2b26 100644 --- a/src/node/transaction.cpp +++ b/src/node/transaction.cpp @@ -31,7 +31,7 @@ TransactionError BroadcastTransaction(NodeContext& node, const CTransactionRef t CCoinsViewCache &view = ::ChainstateActive().CoinsTip(); for (size_t o = 0; o < tx->vout.size(); o++) { const Coin& existingCoin = view.AccessCoin(COutPoint(hashTx, o)); - // IsSpent doesnt mean the coin is spent, it means the output doesnt' exist. + // IsSpent doesn't mean the coin is spent, it means the output doesn't exist. // So if the output does exist, then this transaction exists in the chain. if (!existingCoin.IsSpent()) return TransactionError::ALREADY_IN_CHAIN; } |