diff --git a/proto/celestia/core/v1/da/data_availability_header.pb.go b/proto/celestia/core/v1/da/data_availability_header.pb.go index 5ab044f3a9..15aab2813c 100644 --- a/proto/celestia/core/v1/da/data_availability_header.pb.go +++ b/proto/celestia/core/v1/da/data_availability_header.pb.go @@ -33,7 +33,7 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // Note that currently we list row and column roots in separate fields // (different from the spec). type DataAvailabilityHeader struct { - // RowRoot_j = root((M_{j,1} || M_{j,2} || ... || M_{j,2k} )) + // RowRoot_j = root((M_{j,1} || M_{j,2} || ... || M_{j,2k} )) RowRoots [][]byte `protobuf:"bytes,1,rep,name=row_roots,json=rowRoots,proto3" json:"row_roots,omitempty"` // ColumnRoot_j = root((M_{1,j} || M_{2,j} || ... || M_{2k,j} )) ColumnRoots [][]byte `protobuf:"bytes,2,rep,name=column_roots,json=columnRoots,proto3" json:"column_roots,omitempty"` diff --git a/proto/celestia/core/v1/da/data_availability_header.proto b/proto/celestia/core/v1/da/data_availability_header.proto index 19a4b7d3ce..c6db8c5794 100644 --- a/proto/celestia/core/v1/da/data_availability_header.proto +++ b/proto/celestia/core/v1/da/data_availability_header.proto @@ -14,7 +14,7 @@ option go_package = "github.com/celestiaorg/celestia-app/proto/celestia/core/v1/ // Note that currently we list row and column roots in separate fields // (different from the spec). message DataAvailabilityHeader { - // RowRoot_j = root((M_{j,1} || M_{j,2} || ... || M_{j,2k} )) + // RowRoot_j = root((M_{j,1} || M_{j,2} || ... || M_{j,2k} )) repeated bytes row_roots = 1; // ColumnRoot_j = root((M_{1,j} || M_{2,j} || ... || M_{2k,j} )) repeated bytes column_roots = 2; diff --git a/specs/src/parameters_v3.md b/specs/src/parameters_v3.md index 40c043c576..4ba5e7c8a7 100644 --- a/specs/src/parameters_v3.md +++ b/specs/src/parameters_v3.md @@ -59,7 +59,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 |