diff options
| author | practicalswift <[email protected]> | 2017-06-06 15:03:36 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-06-06 15:06:23 +0200 |
| commit | b083db617a8a9d283388babd76f822071c1ac6fd (patch) | |
| tree | cf64d7d62aff047edc8c79be89cb3eb299a80ec5 /src/coins.cpp | |
| parent | Merge #10535: [qa] fundrawtx: Fix shutdown race (diff) | |
| download | discoin-b083db617a8a9d283388babd76f822071c1ac6fd.tar.xz discoin-b083db617a8a9d283388babd76f822071c1ac6fd.zip | |
[trivial] Fix typo: "occurrences" (misspelled as "occurrances")
Typo introduced in 000391132608343c66488d62625c714814959bc9:
$ git blame src/coins.cpp | grep occurrances
00039113 (2017-04-25 11:29:29 -0700 89) // deal with the pre-BIP30 occurrances of duplicate coinbase transactions.
Diffstat (limited to 'src/coins.cpp')
| -rw-r--r-- | src/coins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coins.cpp b/src/coins.cpp index 5b7c56267..b45fc7633 100644 --- a/src/coins.cpp +++ b/src/coins.cpp @@ -86,7 +86,7 @@ void AddCoins(CCoinsViewCache& cache, const CTransaction &tx, int nHeight) { const uint256& txid = tx.GetHash(); for (size_t i = 0; i < tx.vout.size(); ++i) { // Pass fCoinbase as the possible_overwrite flag to AddCoin, in order to correctly - // deal with the pre-BIP30 occurrances of duplicate coinbase transactions. + // deal with the pre-BIP30 occurrences of duplicate coinbase transactions. cache.AddCoin(COutPoint(txid, i), Coin(tx.vout[i], nHeight, fCoinbase), fCoinbase); } } |