From 78af8a5f50805e3b334729411477ff2c5586eece Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 19:03:36 +0100 Subject: [PATCH 1/6] changed verb form --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 13d9c2766..8d0a8b5e2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,7 +14,7 @@ // Set *default* container specific settings.json values on container create. "settings": {}, - // Add the IDs of extensions you want installed when the container is created. + // Add the IDs of extensions you want to be installed when the container is created. "workspaceFolder": "/home/vscode/SecretNetwork", "extensions": [ "bungcip.better-toml", From 84cdb00357efb6eeeb4f93abfa18d10766359db7 Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 19:04:41 +0100 Subject: [PATCH 2/6] typo --- .github/actions/check-objdump/dist/37.index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/check-objdump/dist/37.index.js b/.github/actions/check-objdump/dist/37.index.js index 62eb6b649..e96b8a1e1 100644 --- a/.github/actions/check-objdump/dist/37.index.js +++ b/.github/actions/check-objdump/dist/37.index.js @@ -230,7 +230,7 @@ class MultipartParser { previousIndex = index; if (index === 0) { - // boyer-moore derrived algorithm to safely skip non-boundary data + // boyer-moore derived algorithm to safely skip non-boundary data i += boundaryEnd; while (i < bufferLength && !(data[i] in boundaryChars)) { i += boundaryLength; From 2d0b3ff7099d2d5d3b20351a8842fc787e2b6d1a Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 19:17:04 +0100 Subject: [PATCH 3/6] fixed verb forms --- app/keepers/keepers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index 6fbc6bfd9..3b7ebfaa0 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -263,7 +263,7 @@ func (ak *SecretAppKeepers) CreateScopedKeepers() { // Also, Create keepers and modules for the transfer, compute, icacontroller and icahost modules. // These are all ibc-enabled, so we build a Stack around each of them. // -// For example, this is how the stack will be build for the transfer app +// For example, this is how the stack will be built for the transfer app // - SendPacket. Originates from the transferKeeper and goes up the stack: // transferKeeper.SendPacket -> ibcpacketforward.SendPacket -> ibcfeekeeper.SendPacket -> // - RecvPacket, message that originates from core IBC and goes down to app, the flow is the other way: @@ -294,7 +294,7 @@ func (ak *SecretAppKeepers) InitCustomKeepers( // 4. IBC Transfer should go through the IBC Hooks middleware // // Therefore we'll initialize the Switch keeper and pass it to the Fee keeper as an ics4wrapper. - // That means that whenever a packet is being send via Fee as an ics4wrapper, it will go through the switch middleware first (ref: https://github.com/cosmos/ibc-go/blob/v4.3.0/modules/apps/29-fee/keeper/relay.go#L15-L18). + // That means that whenever a packet is being sent via Fee as an ics4wrapper, it will go through the switch middleware first (ref: https://github.com/cosmos/ibc-go/blob/v4.3.0/modules/apps/29-fee/keeper/relay.go#L15-L18). // Then we'll pass Fee as an ics4wrapper to everything else. // // Compute send: Switch -> Fee -> Packet Forward -> WASM Hooks From adf58b5e81886a912594b30e65d65b31e47556b1 Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 19:23:14 +0100 Subject: [PATCH 4/6] typos --- app/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app.go b/app/app.go index 294abcfed..5d79b5eb5 100644 --- a/app/app.go +++ b/app/app.go @@ -90,7 +90,7 @@ var ( homeDir, _ = os.UserHomeDir() DefaultCLIHome = filepath.Join(homeDir, ".secretd") - // DefaultNodeHome sets the folder where the applcation data and configuration will be stored + // DefaultNodeHome sets the folder where the application data and configuration will be stored DefaultNodeHome = filepath.Join(homeDir, ".secretd") // Module accounts that are allowed to receive tokens @@ -264,7 +264,7 @@ func NewSecretNetworkApp( app.configurator = module.NewConfigurator(app.appCodec, app.BaseApp.MsgServiceRouter(), app.BaseApp.GRPCQueryRouter()) app.mm.RegisterServices(app.configurator) - // setupUpgradeHandlers() shoulbe be called after app.mm is configured + // setupUpgradeHandlers() should be called after app.mm is configured app.setupUpgradeHandlers() // initialize stores From 451b95a57827811a9d6dc0b555fcc678b8e2976b Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 19:39:04 +0100 Subject: [PATCH 5/6] typo --- check-hw/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check-hw/Cargo.toml b/check-hw/Cargo.toml index e23064245..e058807cf 100644 --- a/check-hw/Cargo.toml +++ b/check-hw/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" default = [] production = [] -# Just here for compatability with enclave features +# Just here for compatibility with enclave features verify-validator-whitelist = [] light-client-validation = [] random = [] From 2a5d6059699c1387066ecf865ed7153e497d635a Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 20:19:56 +0100 Subject: [PATCH 6/6] typos --- client/docs/swagger_legacy.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/docs/swagger_legacy.yaml b/client/docs/swagger_legacy.yaml index 5244dbce7..f01279913 100644 --- a/client/docs/swagger_legacy.yaml +++ b/client/docs/swagger_legacy.yaml @@ -92,7 +92,7 @@ paths: tags: - Deprecated API deprecated: true - description: Get if the node is currently syning with other nodes + description: Get if the node is currently syncing with other nodes produces: - application/json responses: @@ -435,7 +435,7 @@ paths: $ref: "#/definitions/Coin" responses: 202: - description: Tx was succesfully generated + description: Tx was successfully generated schema: $ref: "#/definitions/StdTx" 400: @@ -520,7 +520,7 @@ paths: sequence: type: string 500: - description: Server internel error + description: Server internal error /staking/delegators/{delegatorAddr}/delegations: parameters: - in: path @@ -773,7 +773,7 @@ paths: - application/json responses: 200: - description: Tx was succesfully generated + description: Tx was successfully generated schema: $ref: "#/definitions/StdTx" 400: @@ -1065,7 +1065,7 @@ paths: $ref: "#/definitions/StdTx" responses: 200: - description: Tx was succesfully generated + description: Tx was successfully generated schema: $ref: "#/definitions/StdTx" 400: @@ -1138,7 +1138,7 @@ paths: $ref: "#/definitions/Coin" responses: 200: - description: Tx was succesfully generated + description: Tx was successfully generated schema: $ref: "#/definitions/StdTx" 400: @@ -1219,7 +1219,7 @@ paths: $ref: "#/definitions/ParamChange" responses: 200: - description: The transaction was succesfully generated + description: The transaction was successfully generated schema: $ref: "#/definitions/StdTx" 400: