Skip to content

Commit 45bfa13

Browse files
vlajosluke-jr
authored andcommitted
PARTIAL: typofixes (found by misspell_fixer)
Upstream: 9f68ed6 (PR #6539)
1 parent 21c406e commit 45bfa13

File tree

16 files changed

+18
-18
lines changed

16 files changed

+18
-18
lines changed

contrib/debian/changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ bitcoin (0.5.3-natty0) natty; urgency=low
149149
bitcoin (0.5.2-natty1) natty; urgency=low
150150

151151
* Remove mentions on anonymity in package descriptions and manpage.
152-
These should never have been there, bitcoin isnt anonymous without
152+
These should never have been there, bitcoin isn't anonymous without
153153
a ton of work that virtually no users will ever be willing and
154154
capable of doing
155155

@@ -190,7 +190,7 @@ bitcoin (0.5.0~rc1-natty1) natty; urgency=low
190190

191191
* Add test_bitcoin to build test
192192
* Fix clean
193-
* Remove uneccessary build-dependancies
193+
* Remove unnecessary build-dependancies
194194

195195
-- Matt Corallo <[email protected]> Wed, 26 Oct 2011 14:37:18 -0400
196196

@@ -350,7 +350,7 @@ bitcoin (0.3.20.01~dfsg-1) unstable; urgency=low
350350

351351
bitcoin (0.3.19~dfsg-6) unstable; urgency=low
352352

353-
* Fix override agressive optimizations.
353+
* Fix override aggressive optimizations.
354354
* Fix tighten build-dependencies to really fit backporting to Lenny:
355355
+ Add fallback build-dependency on libdb4.6++-dev.
356356
+ Tighten unversioned Boost build-dependencies to recent versions,

depends/config.guess

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1117,7 +1117,7 @@ EOF
11171117
# uname -m prints for DJGPP always 'pc', but it prints nothing about
11181118
# the processor, so we play safe by assuming i586.
11191119
# Note: whatever this is, it MUST be the same as what config.sub
1120-
# prints for the "djgpp" host, or else GDB configury will decide that
1120+
# prints for the "djgpp" host, or else GDB configure will decide that
11211121
# this is a cross-build.
11221122
echo i586-pc-msdosdjgpp
11231123
exit ;;

qa/rpc-tests/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def run_test(self):
199199
response = http_get_call(url.hostname, url.port, '/rest/getutxos'+json_request+self.FORMAT_SEPARATOR+'json', '', True)
200200
assert_equal(response.status, 200) #must be a 500 because we exceeding the limits
201201

202-
self.nodes[0].generate(1) #generate block to not affect upcomming tests
202+
self.nodes[0].generate(1) #generate block to not affect upcoming tests
203203
self.sync_all()
204204

205205
################

qa/rpc-tests/test_framework/comptool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def send_mempool(self):
134134
# is reached) and then sent out in one inv message. Then the final block
135135
# will be synced across all connections, and the outcome of the final
136136
# block will be tested.
137-
# sync_every_tx: analagous to behavior for sync_every_block, except if outcome
137+
# sync_every_tx: analogous to behavior for sync_every_block, except if outcome
138138
# on the final tx is None, then contents of entire mempool are compared
139139
# across all connections. (If outcome of final tx is specified as true
140140
# or false, then only the last tx is tested against outcome.)

src/addrman.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class CAddrMan
265265
* Notice that vvTried, mapAddr and vVector are never encoded explicitly;
266266
* they are instead reconstructed from the other information.
267267
*
268-
* vvNew is serialized, but only used if ADDRMAN_UNKOWN_BUCKET_COUNT didn't change,
268+
* vvNew is serialized, but only used if ADDRMAN_UNKNOWN_BUCKET_COUNT didn't change,
269269
* otherwise it is reconstructed as well.
270270
*
271271
* This format is more complex, but significantly smaller (at most 1.5 MiB), and supports

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1563,7 +1563,7 @@ bool AbortNode(const std::string& strMessage, const std::string& userMessage="")
15631563
strMiscWarning = strMessage;
15641564
LogPrintf("*** %s\n", strMessage);
15651565
uiInterface.ThreadSafeMessageBox(
1566-
userMessage.empty() ? _("Error: A fatal internal error occured, see debug.log for details") : userMessage,
1566+
userMessage.empty() ? _("Error: A fatal internal error occurred, see debug.log for details") : userMessage,
15671567
"", CClientUIInterface::MSG_ERROR);
15681568
StartShutdown();
15691569
return false;

src/merkleblock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ uint256 CPartialMerkleTree::ExtractMatches(std::vector<uint256> &vMatch) {
168168
// traverse the partial tree
169169
unsigned int nBitsUsed = 0, nHashUsed = 0;
170170
uint256 hashMerkleRoot = TraverseAndExtract(nHeight, 0, nBitsUsed, nHashUsed, vMatch);
171-
// verify that no problems occured during the tree traversal
171+
// verify that no problems occurred during the tree traversal
172172
if (fBad)
173173
return uint256();
174174
// verify that all bits were consumed (except for the padding caused by serializing it as a byte sequence)

src/netbase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ static bool Socks5(const std::string& strDest, int port, const ProxyCredentials
346346
}
347347
if (pchRetA[0] != 0x01 || pchRetA[1] != 0x00) {
348348
CloseSocket(hSocket);
349-
return error("Proxy authentication unsuccesful");
349+
return error("Proxy authentication unsuccessful");
350350
}
351351
} else if (pchRet1[1] == 0x00) {
352352
// Perform no authentication

src/policy/fees.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ void TxConfirmStats::removeTx(unsigned int entryHeight, unsigned int nBestSeenHe
261261
blocksAgo = 0;
262262
if (blocksAgo < 0) {
263263
LogPrint("estimatefee", "Blockpolicy error, blocks ago is negative for mempool tx\n");
264-
return; //This can't happen becasue we call this with our best seen height, no entries can have higher
264+
return; //This can't happen because we call this with our best seen height, no entries can have higher
265265
}
266266

267267
if (blocksAgo >= (int)unconfTxs.size()) {

src/policy/fees.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class TxConfirmStats
118118
/**
119119
* Initialize the data structures. This is called by BlockPolicyEstimator's
120120
* constructor with default values.
121-
* @param defaultBuckets contains the upper limits for the bucket boundries
121+
* @param defaultBuckets contains the upper limits for the bucket boundaries
122122
* @param maxConfirms max number of confirms to track
123123
* @param decay how much to decay the historical moving average per block
124124
* @param dataTypeString for logging purposes

0 commit comments

Comments
 (0)