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

Fixed typos #579

Open
wants to merge 7 commits into
base: master
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 api/band/base/node/v1/query.pulsar.go

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

4 changes: 2 additions & 2 deletions api/band/oracle/v1/query_grpc.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 app/params/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Package params defines the simulation parameters in the band.

It contains the default weights used for each transaction used on the module's
simulation. These weights define the chance for a transaction to be simulated at
any gived operation.
any given, gave operation.

You can replace the default values for the weights by providing a params.json
file with the weights defined for each of the transaction operations:
Expand Down
2 changes: 1 addition & 1 deletion cylinder/workers/group/round2.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (r *Round2) handleGroup(gid tss.GroupID) {
tss.DefaultNonce16Generator{},
)
if err != nil {
logger.Error(":cold_sweat: Failed to genrate encrypted secret shares: %s", err)
logger.Error(":cold_sweat: Failed to generate encrypted secret shares: %s", err)
return
}

Expand Down
4 changes: 2 additions & 2 deletions cylinder/workers/signing/signing.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (s *Signing) handleSigning(sid tss.SigningID) {
}

// Get private keys of DE
privDE, err := s.context.Store.GetDE(types.DE{
provide, err := s.context.Store.GetDE(types.DE{
PubD: assignedMember.PubD,
PubE: assignedMember.PubE,
})
Expand All @@ -111,7 +111,7 @@ func (s *Signing) handleSigning(sid tss.SigningID) {
}

// Compute own private nonce
privNonce, err := tss.ComputeOwnPrivNonce(privDE.PrivD, privDE.PrivE, assignedMember.BindingFactor)
privNonce, err := tss.ComputeOwnPrivNonce(provide.PrivD, provide.PrivE, assignedMember.BindingFactor)
if err != nil {
logger.Error(":cold_sweat: Failed to compute own private nonce: %s", err)
return
Expand Down
2 changes: 1 addition & 1 deletion x/restake/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ This function is used to get the locked power of the account on the vault.

This function is used to set the status of the vault to inactive

**Note:** Once the vault is deactivated, it won’t be able to re-use again.
**Note:** Once the vault is deactivated, it won’t be able to reuse again.

**Logic**

Expand Down
2 changes: 1 addition & 1 deletion yoda/executor/multi.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync/atomic"
)

// MutliExec is a higher-order executor that utlizes the underlying executors to perform Exec.
// MutliExec is a higher-order executor that utilizes the underlying executors to perform Exec.
type MultiExec struct {
execs []Executor // The underlying executors (duplicated if strategy is round-robin).
strategy string // Execution strategy. Can be "order" or "round-robin".
Expand Down