Skip to content

Commit 8a03727

Browse files
paveljanikMarcoFalke
authored andcommitted
Fix various typos
1 parent df2ced5 commit 8a03727

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

contrib/seeds/generate-seeds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/python
2-
# Copyright (c) 2014 Wladmir J. van der Laan
2+
# Copyright (c) 2014 Wladimir J. van der Laan
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55
'''

doc/release-notes/release-notes-0.6.3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ hundreds of blocks long.
2323
Bitcoin-Qt no longer automatically selects the first address
2424
in the address book (Issue #1384).
2525

26-
Fixed minimize-to-dock behavior of Bitcon-Qt on the Mac.
26+
Fixed minimize-to-dock behavior of Bitcoin-Qt on the Mac.
2727

2828
Added a block checkpoint at block 185,333 to speed up initial
2929
blockchain download.

src/amount.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ extern const std::string CURRENCY_UNIT;
3030
static const CAmount MAX_MONEY = 21000000 * COIN;
3131
inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
3232

33-
/** Type-safe wrapper class to for fee rates
33+
/** Type-safe wrapper class for fee rates
3434
* (how much to pay based on transaction size)
3535
*/
3636
class CFeeRate

src/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ namespace {
134134
set<CBlockIndex*, CBlockIndexWorkComparator> setBlockIndexCandidates;
135135
/** Number of nodes with fSyncStarted. */
136136
int nSyncStarted = 0;
137-
/** All pairs A->B, where A (or one if its ancestors) misses transactions, but B has transactions.
138-
* Pruned nodes may have entries where B is missing data.
139-
*/
137+
/** All pairs A->B, where A (or one of its ancestors) misses transactions, but B has transactions.
138+
* Pruned nodes may have entries where B is missing data.
139+
*/
140140
multimap<CBlockIndex*, CBlockIndex*> mapBlocksUnlinked;
141141

142142
CCriticalSection cs_LastBlockFile;

src/rest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ static bool rest_getutxos(HTTPRequest* req, const std::string& strURIPart)
494494
if (vOutPoints.size() > MAX_GETUTXOS_OUTPOINTS)
495495
return RESTERR(req, HTTP_INTERNAL_SERVER_ERROR, strprintf("Error: max outpoints exceeded (max: %d, tried: %d)", MAX_GETUTXOS_OUTPOINTS, vOutPoints.size()));
496496

497-
// check spentness and form a bitmap (as well as a JSON capable human-readble string representation)
497+
// check spentness and form a bitmap (as well as a JSON capable human-readable string representation)
498498
vector<unsigned char> bitmap;
499499
vector<CCoin> outs;
500500
std::string bitmapStringRepresentation;

0 commit comments

Comments
 (0)