Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos #410

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ branch (see [CONTRIBUTING.md](./CONTRIBUTING.md#pull-requests)).
* When bugs are found, create a PR for `main`, and backport fixes to the
release branch.
* Before tagging the release, create and merge PR to the release branch that:
* Moves all changelog entries form `Unreleased` section of the changelog to the newly created section `v0.Y.0`
* Moves all changelog entries from `Unreleased` section of the changelog to the newly created section `v0.Y.0`
* Create new release candidate tags after bugs are fixed.
* After the team feels the release candidate is ready, create a full release:
* **Note:** The final release MUST have the same commit hash as the latest
Expand Down
4 changes: 2 additions & 2 deletions proto/babylon/btcstaking/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ message MsgCreateFinalityProviderResponse {}
// MsgEditFinalityProvider is the message for editing an existing finality provider
message MsgEditFinalityProvider {
option (cosmos.msg.v1.signer) = "addr";
// addr the address of the finality provider that whishes to edit his information.
// addr the address of the finality provider that wishes to edit his information.
string addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
// btc_pk is the Bitcoin secp256k1 PK of the finality provider to be edited
bytes btc_pk = 2;
Expand Down Expand Up @@ -108,7 +108,7 @@ message MsgCreateBTCDelegation {
// - unbonding transaction, time lock spending path
// - staking slashing transaction, change output
// - unbonding slashing transaction, change output
// It must be smaller than math.MaxUInt16 and larger that max(MinUnbondingTime, CheckpointFinalizationTimeout)
// It must be smaller than math.MaxUInt16 and larger than max(MinUnbondingTime, CheckpointFinalizationTimeout)
uint32 unbonding_time = 11;
// fields related to unbonding transaction
// unbonding_tx is a bitcoin unbonding transaction i.e transaction that spends
Expand Down
6 changes: 3 additions & 3 deletions x/btcstaking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ provider.
// MsgEditFinalityProvider is the message for editing an existing finality provider
message MsgEditFinalityProvider {
option (cosmos.msg.v1.signer) = "addr";
// addr the address of the finality provider that whishes to edit his information.
// addr the address of the finality provider that wishes to edit his information.
string addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
// btc_pk is the Bitcoin secp256k1 PK of the finality provider to be edited
bytes btc_pk = 2;
Expand Down Expand Up @@ -510,7 +510,7 @@ message MsgCreateBTCDelegation {
// - unbonding transaction, time lock spending path
// - staking slashing transaction, change output
// - unbonding slashing transaction, change output
// It must be smaller than math.MaxUInt16 and larger that max(MinUnbondingTime, CheckpointFinalizationTimeout)
// It must be smaller than math.MaxUInt16 and larger than max(MinUnbondingTime, CheckpointFinalizationTimeout)
uint32 unbonding_time = 11;
// fields related to unbonding transaction
// unbonding_tx is a bitcoin unbonding transaction i.e transaction that spends
Expand Down Expand Up @@ -688,7 +688,7 @@ Upon `BTCUndelegate`, a Babylon node will execute as follows:
### MsgUpdateParams

The `MsgUpdateParams` message is used for updating the module parameters for the
BTC Staking module. It can only be executed via a govenance proposal.
BTC Staking module. It can only be executed via a governance proposal.

```protobuf
// MsgUpdateParams defines a message for updating btcstaking module parameters.
Expand Down
4 changes: 2 additions & 2 deletions x/btcstaking/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion x/finality/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ Upon `MsgAddFinalitySig`, a Babylon node will execute as follows:
### MsgUpdateParams

The `MsgUpdateParams` message is used for updating the module parameters for the
Finality module. It can only be executed via a govenance proposal.
Finality module. It can only be executed via a governance proposal.

```protobuf
// MsgUpdateParams defines a message for updating finality module parameters.
Expand Down