File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ rebuild _just_ this derivation in a single-threaded fashion:
295
295
$ guix build --cores=1 /gnu/store/...-foo-3.6.12.drv
296
296
```
297
297
298
- If the single-threaded rebuild stil did not succeed, you may need to dig deeper.
298
+ If the single-threaded rebuild did not succeed, you may need to dig deeper.
299
299
You may view ` foo ` 's build logs in ` less ` like so (please replace paths with the
300
300
path you see in the build failure output):
301
301
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ source "$(dirname "${BASH_SOURCE[0]}")/libexec/prelude.bash"
15
15
# ##################
16
16
17
17
# ###############
18
- # Required non-builtin commands should be invokable
18
+ # Required non-builtin commands should be invocable
19
19
# ###############
20
20
21
21
check_tools cat mkdir make git guix
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ source contrib/shell/realpath.bash
9
9
source contrib/shell/git-utils.bash
10
10
11
11
# ###############
12
- # Required non-builtin commands should be invokable
12
+ # Required non-builtin commands should be invocable
13
13
# ###############
14
14
15
15
check_tools () {
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ void initialize_tx_pool()
34
34
35
35
for (int i = 0 ; i < 2 * COINBASE_MATURITY; ++i) {
36
36
CTxIn in = MineBlock (g_setup->m_node , P2WSH_OP_TRUE);
37
- // Remember the txids to avoid expensive disk acess later on
37
+ // Remember the txids to avoid expensive disk access later on
38
38
auto & outpoints = i < COINBASE_MATURITY ?
39
39
g_outpoints_coinbase_init_mature :
40
40
g_outpoints_coinbase_init_immature;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class TxOrphanage {
26
26
/* * Check if we already have an orphan transaction (by txid or wtxid) */
27
27
bool HaveTx (const GenTxid& gtxid) const LOCKS_EXCLUDED(::g_cs_orphans);
28
28
29
- /* * Get an orphan transaction and its orginating peer
29
+ /* * Get an orphan transaction and its originating peer
30
30
* (Transaction ref will be nullptr if not found)
31
31
*/
32
32
std::pair<CTransactionRef, NodeId> GetTx (const uint256& txid) const EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans);
Original file line number Diff line number Diff line change @@ -486,7 +486,7 @@ class TxRequestTracker::Impl {
486
486
}
487
487
488
488
// ! Make the data structure consistent with a given point in time:
489
- // ! - REQUESTED annoucements with expiry <= now are turned into COMPLETED.
489
+ // ! - REQUESTED announcements with expiry <= now are turned into COMPLETED.
490
490
// ! - CANDIDATE_DELAYED announcements with reqtime <= now are turned into CANDIDATE_{READY,BEST}.
491
491
// ! - CANDIDATE_{READY,BEST} announcements with reqtime > now are turned into CANDIDATE_DELAYED.
492
492
void SetTimePoint (std::chrono::microseconds now, std::vector<std::pair<NodeId, GenTxid>>* expired)
You can’t perform that action at this time.
0 commit comments