From 3993138210d5f531c1d9025633b3f422ce900cc0 Mon Sep 17 00:00:00 2001 From: Danbo <140512416+dannbbb1@users.noreply.github.com> Date: Tue, 17 Dec 2024 09:52:35 -0500 Subject: [PATCH] fix: typos (#4132) fixed (not yet extended)s - (not yet extended) packetfowardmiddleware - packetforwardmiddleware diving - dividing I hope my correction will contribute to the project's development. Thank you for the time you gave me. --------- Co-authored-by: Rootul P --- specs/src/parameters_v1.md | 2 +- specs/src/parameters_v2.md | 2 +- x/blob/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/specs/src/parameters_v1.md b/specs/src/parameters_v1.md index 5bfdd1eee1..18a2cb9c4e 100644 --- a/specs/src/parameters_v1.md +++ b/specs/src/parameters_v1.md @@ -25,7 +25,7 @@ hardcoded in the application or they are blocked by the `x/paramfilter` module. | auth.TxSizeCostPerByte | 10 | Gas used per transaction byte. | True | | bank.SendEnabled | true | Allow transfers. | False | | blob.GasPerBlobByte | 8 | Gas used per blob byte. | True | -| blob.GovMaxSquareSize | 64 | Governance parameter for the maximum square size determined per shares per row or column for the original data square (not yet extended)s. If larger than MaxSquareSize, MaxSquareSize is used. | True | +| blob.GovMaxSquareSize | 64 | Governance parameter for the maximum square size determined per shares per row or column for the original data square (not yet extended). If larger than MaxSquareSize, MaxSquareSize is used. | True | | blobstream.DataCommitmentWindow | 400 | Number of blocks that are included in a signed batch (DataCommitment). | True | | consensus.block.MaxBytes | 1974272 bytes (~1.88 MiB) | Governance parameter for the maximum size of the protobuf encoded block. | True | | consensus.block.MaxGas | -1 | Maximum gas allowed per block (-1 is infinite). | True | diff --git a/specs/src/parameters_v2.md b/specs/src/parameters_v2.md index 411e4c0778..92475022d3 100644 --- a/specs/src/parameters_v2.md +++ b/specs/src/parameters_v2.md @@ -56,7 +56,7 @@ hardcoded in the application or they are blocked by the `x/paramfilter` module. | mint.DisinflationRate | 0.10 (10%) | The rate at which the inflation rate decreases each year. | False | | mint.InitialInflationRate | 0.08 (8%) | The inflation rate the network starts at. | False | | mint.TargetInflationRate | 0.015 (1.5%) | The inflation rate that the network aims to stabilize at. | False | -| packetfowardmiddleware.FeePercentage | 0 | % of the forwarded packet amount which will be subtracted and distributed to the community pool. | True | +| packetforwardmiddleware.FeePercentage | 0 | % of the forwarded packet amount which will be subtracted and distributed to the community pool. | True | | slashing.DowntimeJailDuration | 1 min | Duration of time a validator must stay jailed. | True | | slashing.MinSignedPerWindow | 0.75 (75%) | The percentage of SignedBlocksWindow that must be signed not to get jailed. | True | | slashing.SignedBlocksWindow | 5000 | The range of blocks used to count for downtime. | True | diff --git a/x/blob/README.md b/x/blob/README.md index efa1f74858..39fb1a227a 100644 --- a/x/blob/README.md +++ b/x/blob/README.md @@ -96,7 +96,7 @@ rational can be found in the [data square layout](../../specs/src/data_square_la 1. Determine the [`SubtreeWidth`](https://github.com/celestiaorg/celestia-app/blob/v1.0.0-rc2/pkg/shares/non_interactive_defaults.go#L94-L116) by dividing the length in shares by the `SubtreeRootThreshold`. -1. Generate each subtree root by diving the blob shares into `SubtreeWidth` +1. Generate each subtree root by dividing the blob shares into `SubtreeWidth` sized sets, then take the binary [namespaced merkle tree (NMT)](https://github.com/celestiaorg/nmt/blob/v0.16.0/docs/spec/nmt.md) root of each set of shares.