Fix typos reported by codespell

This commit is contained in:
practicalswift 2018-08-14 09:27:30 +02:00
parent 59ecacfc84
commit ada356208e
19 changed files with 30 additions and 25 deletions

View File

@ -96,7 +96,7 @@ Comment: Site: https://bitcointalk.org/?topic=1756.0
Files: src/qt/res/icons/proxy.png Files: src/qt/res/icons/proxy.png
src/qt/res/src/proxy.svg src/qt/res/src/proxy.svg
Copyright: Cristian Mircea Messel Copyright: Cristian Mircea Messel
Licese: public-domain License: public-domain
License: Expat License: Expat

View File

@ -170,7 +170,7 @@ def main():
args.sign_prog = 'true' if args.detach_sign else 'gpg --detach-sign' args.sign_prog = 'true' if args.detach_sign else 'gpg --detach-sign'
# Set enviroment variable USE_LXC or USE_DOCKER, let gitian-builder know that we use lxc or docker # Set environment variable USE_LXC or USE_DOCKER, let gitian-builder know that we use lxc or docker
if args.docker: if args.docker:
os.environ['USE_DOCKER'] = '1' os.environ['USE_DOCKER'] = '1'
elif not args.kvm: elif not args.kvm:

View File

@ -78,7 +78,7 @@ static void SetMaxOpenFiles(leveldb::Options *options) {
// do not interfere with select() loops. On 64-bit Unix hosts this value is // do not interfere with select() loops. On 64-bit Unix hosts this value is
// also OK, because up to that amount LevelDB will use an mmap // also OK, because up to that amount LevelDB will use an mmap
// implementation that does not use extra file descriptors (the fds are // implementation that does not use extra file descriptors (the fds are
// closed after being mmaped). // closed after being mmap'ed).
// //
// Increasing the value beyond the default is dangerous because LevelDB will // Increasing the value beyond the default is dangerous because LevelDB will
// fall back to a non-mmap implementation when the file count is too large. // fall back to a non-mmap implementation when the file count is too large.

View File

@ -5,7 +5,7 @@
* Press "Ok" button in message box dialog. * Press "Ok" button in message box dialog.
* *
* @param text - Optionally store dialog text. * @param text - Optionally store dialog text.
* @param msec - Number of miliseconds to pause before triggering the callback. * @param msec - Number of milliseconds to pause before triggering the callback.
*/ */
void ConfirmMessage(QString* text = nullptr, int msec = 0); void ConfirmMessage(QString* text = nullptr, int msec = 0);

View File

@ -1740,7 +1740,7 @@ UniValue converttopsbt(const JSONRPCRequest& request)
" will continue. If false, RPC will fail if any signatures are present.\n" " will continue. If false, RPC will fail if any signatures are present.\n"
"3. iswitness (boolean, optional) Whether the transaction hex is a serialized witness transaction.\n" "3. iswitness (boolean, optional) Whether the transaction hex is a serialized witness transaction.\n"
" If iswitness is not present, heuristic tests will be used in decoding. If true, only witness deserializaion\n" " If iswitness is not present, heuristic tests will be used in decoding. If true, only witness deserializaion\n"
" will be tried. If false, only non-witness deserialization wil be tried. Only has an effect if\n" " will be tried. If false, only non-witness deserialization will be tried. Only has an effect if\n"
" permitsigdata is true.\n" " permitsigdata is true.\n"
"\nResult:\n" "\nResult:\n"
" \"psbt\" (string) The resulting raw transaction (base64-encoded string)\n" " \"psbt\" (string) The resulting raw transaction (base64-encoded string)\n"

View File

@ -111,7 +111,7 @@ public:
/** /**
* Add a callback to be executed. Callbacks are executed serially * Add a callback to be executed. Callbacks are executed serially
* and memory is release-acquire consistent between callback executions. * and memory is release-acquire consistent between callback executions.
* Practially, this means that callbacks can behave as if they are executed * Practically, this means that callbacks can behave as if they are executed
* in order by a single thread. * in order by a single thread.
*/ */
void AddToProcessQueue(std::function<void (void)> func); void AddToProcessQueue(std::function<void (void)> func);

View File

@ -373,7 +373,7 @@ enum class ParseScriptContext {
P2WSH, P2WSH,
}; };
/** Parse a constant. If succesful, sp is updated to skip the constant and return true. */ /** Parse a constant. If successful, sp is updated to skip the constant and return true. */
bool Const(const std::string& str, Span<const char>& sp) bool Const(const std::string& str, Span<const char>& sp)
{ {
if ((size_t)sp.size() >= str.size() && std::equal(str.begin(), str.end(), sp.begin())) { if ((size_t)sp.size() >= str.size() && std::equal(str.begin(), str.end(), sp.begin())) {
@ -383,7 +383,7 @@ bool Const(const std::string& str, Span<const char>& sp)
return false; return false;
} }
/** Parse a function call. If succesful, sp is updated to be the function's argument(s). */ /** Parse a function call. If successful, sp is updated to be the function's argument(s). */
bool Func(const std::string& str, Span<const char>& sp) bool Func(const std::string& str, Span<const char>& sp)
{ {
if ((size_t)sp.size() >= str.size() + 2 && sp[str.size()] == '(' && sp[sp.size() - 1] == ')' && std::equal(str.begin(), str.end(), sp.begin())) { if ((size_t)sp.size() >= str.size() + 2 && sp[str.size()] == '(' && sp[sp.size() - 1] == ')' && std::equal(str.begin(), str.end(), sp.begin())) {

View File

@ -529,7 +529,7 @@ public:
explicit BitStreamReader(IStream& istream) : m_istream(istream) {} explicit BitStreamReader(IStream& istream) : m_istream(istream) {}
/** Read the specified number of bits from the stream. The data is returned /** Read the specified number of bits from the stream. The data is returned
* in the nbits least signficant bits of a 64-bit uint. * in the nbits least significant bits of a 64-bit uint.
*/ */
uint64_t Read(int nbits) { uint64_t Read(int nbits) {
if (nbits < 0 || nbits > 64) { if (nbits < 0 || nbits > 64) {

View File

@ -75,7 +75,7 @@ void* Arena::alloc(size_t size)
// Create the used-chunk, taking its space from the end of the free-chunk // Create the used-chunk, taking its space from the end of the free-chunk
const size_t size_remaining = size_ptr_it->first - size; const size_t size_remaining = size_ptr_it->first - size;
auto alloced = chunks_used.emplace(size_ptr_it->second + size_remaining, size).first; auto allocated = chunks_used.emplace(size_ptr_it->second + size_remaining, size).first;
chunks_free_end.erase(size_ptr_it->second + size_ptr_it->first); chunks_free_end.erase(size_ptr_it->second + size_ptr_it->first);
if (size_ptr_it->first == size) { if (size_ptr_it->first == size) {
// whole chunk is used up // whole chunk is used up
@ -88,7 +88,7 @@ void* Arena::alloc(size_t size)
} }
size_to_free_chunk.erase(size_ptr_it); size_to_free_chunk.erase(size_ptr_it);
return reinterpret_cast<void*>(alloced->first); return reinterpret_cast<void*>(allocated->first);
} }
void Arena::free(void *ptr) void Arena::free(void *ptr)

View File

@ -72,7 +72,7 @@ BerkeleyEnvironment* GetWalletEnv(const fs::path& wallet_path, std::string& data
database_filename = "wallet.dat"; database_filename = "wallet.dat";
} }
LOCK(cs_db); LOCK(cs_db);
// Note: An ununsed temporary BerkeleyEnvironment object may be created inside the // Note: An unused temporary BerkeleyEnvironment object may be created inside the
// emplace function if the key already exists. This is a little inefficient, // emplace function if the key already exists. This is a little inefficient,
// but not a big concern since the map will be changed in the future to hold // but not a big concern since the map will be changed in the future to hold
// pointers instead of objects, anyway. // pointers instead of objects, anyway.

View File

@ -76,7 +76,7 @@ class ExampleTest(BitcoinTestFramework):
def set_test_params(self): def set_test_params(self):
"""Override test parameters for your individual test. """Override test parameters for your individual test.
This method must be overridden and num_nodes must be exlicitly set.""" This method must be overridden and num_nodes must be explicitly set."""
self.setup_clean_chain = True self.setup_clean_chain = True
self.num_nodes = 3 self.num_nodes = 3
# Use self.extra_args to change command-line arguments for the nodes # Use self.extra_args to change command-line arguments for the nodes

View File

@ -989,7 +989,7 @@ class FullBlockTest(BitcoinTestFramework):
assert_equal(get_legacy_sigopcount_block(b73), MAX_BLOCK_SIGOPS + 1) assert_equal(get_legacy_sigopcount_block(b73), MAX_BLOCK_SIGOPS + 1)
self.sync_blocks([b73], success=False, reject_code=16, reject_reason=b'bad-blk-sigops', reconnect=True) self.sync_blocks([b73], success=False, reject_code=16, reject_reason=b'bad-blk-sigops', reconnect=True)
# b74/75 - if we push an invalid script element, all prevous sigops are counted, # b74/75 - if we push an invalid script element, all previous sigops are counted,
# but sigops after the element are not counted. # but sigops after the element are not counted.
# #
# The invalid script element is that the push_data indicates that # The invalid script element is that the push_data indicates that

View File

@ -15,8 +15,8 @@ class LongpollThread(threading.Thread):
def __init__(self, node): def __init__(self, node):
threading.Thread.__init__(self) threading.Thread.__init__(self)
# query current longpollid # query current longpollid
templat = node.getblocktemplate() template = node.getblocktemplate()
self.longpollid = templat['longpollid'] self.longpollid = template['longpollid']
# create a new connection to the node, we can't use the same # create a new connection to the node, we can't use the same
# connection from two threads # connection from two threads
self.node = get_rpc_proxy(node.url, 1, timeout=600, coveragedir=node.coverage_dir) self.node = get_rpc_proxy(node.url, 1, timeout=600, coveragedir=node.coverage_dir)
@ -31,11 +31,11 @@ class GetBlockTemplateLPTest(BitcoinTestFramework):
def run_test(self): def run_test(self):
self.log.info("Warning: this test will take about 70 seconds in the best case. Be patient.") self.log.info("Warning: this test will take about 70 seconds in the best case. Be patient.")
self.nodes[0].generate(10) self.nodes[0].generate(10)
templat = self.nodes[0].getblocktemplate() template = self.nodes[0].getblocktemplate()
longpollid = templat['longpollid'] longpollid = template['longpollid']
# longpollid should not change between successive invocations if nothing else happens # longpollid should not change between successive invocations if nothing else happens
templat2 = self.nodes[0].getblocktemplate() template2 = self.nodes[0].getblocktemplate()
assert(templat2['longpollid'] == longpollid) assert(template2['longpollid'] == longpollid)
# Test 1: test that the longpolling wait if we do nothing # Test 1: test that the longpolling wait if we do nothing
thr = LongpollThread(self.nodes[0]) thr = LongpollThread(self.nodes[0])

View File

@ -76,7 +76,7 @@ class InvalidTxRequestTest(BitcoinTestFramework):
self.reconnect_p2p(num_connections=2) self.reconnect_p2p(num_connections=2)
self.log.info('Test orphan transaction handling ... ') self.log.info('Test orphan transaction handling ... ')
# Create a root transaction that we withhold until all dependend transactions # Create a root transaction that we withhold until all dependent transactions
# are sent out and in the orphan cache # are sent out and in the orphan cache
SCRIPT_PUB_KEY_OP_TRUE = b'\x51\x75' * 15 + b'\x51' SCRIPT_PUB_KEY_OP_TRUE = b'\x51\x75' * 15 + b'\x51'
tx_withhold = CTransaction() tx_withhold = CTransaction()

View File

@ -89,7 +89,7 @@ class NodeNetworkLimitedTest(BitcoinTestFramework):
sync_blocks([self.nodes[0], self.nodes[2]], timeout=5) sync_blocks([self.nodes[0], self.nodes[2]], timeout=5)
except: except:
pass pass
# node2 must remain at heigh 0 # node2 must remain at height 0
assert_equal(self.nodes[2].getblockheader(self.nodes[2].getbestblockhash())['height'], 0) assert_equal(self.nodes[2].getblockheader(self.nodes[2].getbestblockhash())['height'], 0)
# now connect also to node 1 (non pruned) # now connect also to node 1 (non pruned)

View File

@ -471,7 +471,7 @@ class SegWitTest(BitcoinTestFramework):
blocks are permitted to contain witnesses).""" blocks are permitted to contain witnesses)."""
# node2 doesn't need to be connected for this test. # node2 doesn't need to be connected for this test.
# (If it's connected, node0 may propogate an invalid block to it over # (If it's connected, node0 may propagate an invalid block to it over
# compact blocks and the nodes would have inconsistent tips.) # compact blocks and the nodes would have inconsistent tips.)
disconnect_nodes(self.nodes[0], 2) disconnect_nodes(self.nodes[0], 2)

View File

@ -105,7 +105,7 @@ class PSBTTest(BitcoinTestFramework):
signedtx = self.nodes[0].signrawtransactionwithwallet(rawtx['hex']) signedtx = self.nodes[0].signrawtransactionwithwallet(rawtx['hex'])
assert_raises_rpc_error(-22, "TX decode failed", self.nodes[0].converttopsbt, signedtx['hex']) assert_raises_rpc_error(-22, "TX decode failed", self.nodes[0].converttopsbt, signedtx['hex'])
# Explicilty allow converting non-empty txs # Explicitly allow converting non-empty txs
new_psbt = self.nodes[0].converttopsbt(rawtx['hex']) new_psbt = self.nodes[0].converttopsbt(rawtx['hex'])
self.nodes[0].decodepsbt(new_psbt) self.nodes[0].decodepsbt(new_psbt)

View File

@ -122,7 +122,7 @@ def create_tx_with_script(prevtx, n, script_sig=b"", *, amount, script_pub_key=C
"""Return one-input, one-output transaction object """Return one-input, one-output transaction object
spending the prevtx's n-th output with the given amount. spending the prevtx's n-th output with the given amount.
Can optionally pass scriptPubKey and scriptSig, default is anyone-can-spend ouput. Can optionally pass scriptPubKey and scriptSig, default is anyone-can-spend output.
""" """
tx = CTransaction() tx = CTransaction()
assert(n < len(prevtx.vout)) assert(n < len(prevtx.vout))

View File

@ -0,0 +1,5 @@
cas
hights
mor
objext
useable