mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-15 12:19:46 +01:00
doc: fix a few simple codespell warnings
This commit is contained in:
parent
4ee1940e84
commit
f9a08f35a5
2 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ struct Params {
|
||||||
uint256 powLimit;
|
uint256 powLimit;
|
||||||
bool fPowAllowMinDifficultyBlocks;
|
bool fPowAllowMinDifficultyBlocks;
|
||||||
/**
|
/**
|
||||||
* Enfore BIP94 timewarp attack mitigation. On testnet4 this also enforces
|
* Enforce BIP94 timewarp attack mitigation. On testnet4 this also enforces
|
||||||
* the block storm mitigation.
|
* the block storm mitigation.
|
||||||
*/
|
*/
|
||||||
bool enforce_BIP94;
|
bool enforce_BIP94;
|
||||||
|
|
|
@ -155,7 +155,7 @@ struct DepGraphFormatter
|
||||||
// Ignore transactions which are already known to be ancestors.
|
// Ignore transactions which are already known to be ancestors.
|
||||||
if (depgraph.Descendants(dep_idx).Overlaps(written_parents)) continue;
|
if (depgraph.Descendants(dep_idx).Overlaps(written_parents)) continue;
|
||||||
if (depgraph.Ancestors(idx)[dep_idx]) {
|
if (depgraph.Ancestors(idx)[dep_idx]) {
|
||||||
// When an actual parent is encounted, encode how many non-parents were skipped
|
// When an actual parent is encountered, encode how many non-parents were skipped
|
||||||
// before it.
|
// before it.
|
||||||
s << VARINT(diff);
|
s << VARINT(diff);
|
||||||
diff = 0;
|
diff = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue