Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ var ChainStatObjCmd = &cli.Command{
ArgsUsage: "[cid]",
Description: `Collect object size and ipld link count for an object.

When a base is provided it will be walked first, and all links visisted
When a base is provided it will be walked first, and all links visited
will be ignored when the passed in object is walked.
`,
Flags: []cli.Flag{
Expand Down
2 changes: 1 addition & 1 deletion documentation/en/architecture/mpool.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ The meaning of these fields is as follows:
Default is empty.
- `SizeLimitHigh` -- this is the maximum number of pending messages before triggering a
prune in the message pool. Note that messages from priority addresses are never pruned.
Defafult is 30000.
Default is 30000.
- `SizeLimitLow` -- this is the number of pending messages that should be kept after a prune.
Default is 20000.
- `ReplaceByFeeRatio` -- this is the gas fee ratio for replacing messages in the mpool.
Expand Down
2 changes: 1 addition & 1 deletion documentation/en/chain-indexer-overview-for-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ The `Fevm.Events` options were marked as deprecated in Lotus 1.26, having been m
* `Fevm.Events.DatabasePath` (no replacement available)
* `Fevm.Events.DisableRealTimeFilterAPI` (no replacement available)
* `Fevm.Events.DisableHistoricFilterAPI` (no replacement available)
* `Fevm.Events.FilterTTL` (use `Events.FilterTTL` intead)
* `Fevm.Events.FilterTTL` (use `Events.FilterTTL` instead)
* `Fevm.Events.MaxFilters` (use `Events.MaxFilters` instead)
* `Fevm.Events.MaxFilterResults` (use `Events.MaxFilterResults` instead)
* `Fevm.Events.MaxFilterHeightRange` (use `Events.MaxFilterHeightRange` instead)
Expand Down
2 changes: 1 addition & 1 deletion documentation/en/cli-lotus.md
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,7 @@ USAGE:
DESCRIPTION:
Collect object size and ipld link count for an object.

When a base is provided it will be walked first, and all links visisted
When a base is provided it will be walked first, and all links visited
will be ignored when the passed in object is walked.


Expand Down
6 changes: 3 additions & 3 deletions documentation/misc/Building_a_network_skeleton.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,17 +201,17 @@ Note: one only needs to update `filecoin-ffi`'s dependency on `go-state-types` w
- Set `const GenesisNetworkVersion = network.VersionXX` where XX is the network version you are upgrading from.
- `params_butterfly.go`
- set previous upgrade to `var UpgradeXxHeigh = abi.ChainEpoch(-xx-1)`
- Add comment with ?????? signaling that the new upgrade date is unkown
- Add comment with ?????? signaling that the new upgrade date is unknown
- Add `const UpgradeXxHeight = 999999999999999`
- `params_calibnet.go`
- Add comment with `??????` signaling that the new upgrade date is unkown
- Add comment with `??????` signaling that the new upgrade date is unknown
- Add `const UpgradeXxHeight = 999999999999999`
- `params_interop.go`
- set previous upgrade to `var UpgradeXxHeigh = abi.ChainEpoch(-xx-1)`
- Add `const UpgradeXxHeight = 50`
- `params_mainnet.go`
- Set previous upgrade to `const UpgradeXxHeight = XX`
- Add comment with ???? signaling that the new upgrade date is unkown
- Add comment with ???? signaling that the new upgrade date is unknown
- Add `var UpgradeXxHeight = abi.ChainEpoch(9999999999)`
- Change the `LOTUS_DISABLE_XX` env variable to the new network name
- `params_testground.go`
Expand Down