From 564927441025f843aaa371e4069db0cfe7a65d83 Mon Sep 17 00:00:00 2001 From: Danil <37103154+Danyylka@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:51:00 +0100 Subject: [PATCH 1/4] Update adr-002-qgb-valset.md --- docs/architecture/adr-002-qgb-valset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/adr-002-qgb-valset.md b/docs/architecture/adr-002-qgb-valset.md index 35f0188cf4..ac6aed1749 100644 --- a/docs/architecture/adr-002-qgb-valset.md +++ b/docs/architecture/adr-002-qgb-valset.md @@ -37,7 +37,7 @@ Finally, if there are no validator set updates for the unbonding window, the bri ### Message types -We added the following messages types: +We added the following message types: #### Bridge Validator From b9f98759be3cfe7945c7e40f1dd330813b4c1af2 Mon Sep 17 00:00:00 2001 From: Danil <37103154+Danyylka@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:52:32 +0100 Subject: [PATCH 2/4] Update global_consts.go --- pkg/appconsts/global_consts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/appconsts/global_consts.go b/pkg/appconsts/global_consts.go index 1bcdb7ac6c..b1e8a694ad 100644 --- a/pkg/appconsts/global_consts.go +++ b/pkg/appconsts/global_consts.go @@ -11,7 +11,7 @@ import ( // // They cannot change throughout the lifetime of a network. const ( - // DefaultShareVersion is the defacto share version. Use this if you are + // DefaultShareVersion is the de facto share version. Use this if you are // unsure of which version to use. DefaultShareVersion = share.ShareVersionZero From 67c3e8723efd6923cfa1f6213e1625a907e4f4fd Mon Sep 17 00:00:00 2001 From: Danil <37103154+Danyylka@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:52:59 +0100 Subject: [PATCH 3/4] Update initial_consts.go --- pkg/appconsts/initial_consts.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/appconsts/initial_consts.go b/pkg/appconsts/initial_consts.go index 18cafc969d..c9924f5174 100644 --- a/pkg/appconsts/initial_consts.go +++ b/pkg/appconsts/initial_consts.go @@ -7,7 +7,7 @@ import ( ) // The following defaults correspond to initial parameters of the network that can be changed, not via app versions -// but other means such as on-chain governance, or the nodes local config +// but other means such as on-chain governance, or the node's local config const ( // DefaultGovMaxSquareSize is the default value for the governance modifiable // max square size. @@ -19,7 +19,7 @@ const ( // DefaultMinGasPrice is the default min gas price that gets set in the app.toml file. // The min gas price acts as a filter. Transactions below that limit will not pass - // a nodes `CheckTx` and thus not be proposed by that node. + // a node's `CheckTx` and thus not be proposed by that node. DefaultMinGasPrice = 0.002 // utia // DefaultUnbondingTime is the default time a validator must wait From a1621dba93626e14d32914454672a23ad9e831f3 Mon Sep 17 00:00:00 2001 From: Danil <37103154+Danyylka@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:53:28 +0100 Subject: [PATCH 4/4] Update data_availability_header_test.go --- pkg/da/data_availability_header_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/da/data_availability_header_test.go b/pkg/da/data_availability_header_test.go index 7649750d09..8efc78db58 100644 --- a/pkg/da/data_availability_header_test.go +++ b/pkg/da/data_availability_header_test.go @@ -187,7 +187,7 @@ func Test_DAHValidateBasic(t *testing.T) { errStr: "minimum valid DataAvailabilityHeader has at least", }, { - name: "bash hash", + name: "bad hash", dah: badHashDah, expectErr: true, errStr: "wrong hash",