Skip to content
Closed
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Bug Fixes

* Fix bug in ditribution and querying rewards
* Fix bug in distribution and querying rewards
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
level of experience, education, socioeconomic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func (app *AkashApp) registerUpgradeHandlers() error {
app.Logger().Info(fmt.Sprintf("initializing upgrade `%s`", name))
upgrade, err := fn(app.Logger(), &app.App)
if err != nil {
return fmt.Errorf("unable to unitialize upgrade `%s`: %w", name, err)
return fmt.Errorf("unable to uninitialize upgrade `%s`: %w", name, err)
}

app.Keepers.Cosmos.Upgrade.SetUpgradeHandler(name, upgrade.UpgradeHandler())
Expand Down
6 changes: 3 additions & 3 deletions pubsub/bus.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (b *bus) run() {
defer b.lc.ShutdownCompleted()

var outch chan<- Event
var curev Event
var curve Event

loop:
for {
Expand All @@ -119,7 +119,7 @@ loop:
// are events to emit, set up the output channel and output
// event accordingly.
outch = b.eventch
curev = b.evbuf[0]
curve = b.evbuf[0]
} else {
// otherwise block the output (sending to a nil channel always blocks)
outch = nil
Expand All @@ -130,7 +130,7 @@ loop:
b.lc.ShutdownInitiated(err)
break loop

case outch <- curev:
case outch <- curve:
// Event was emitted. Shrink current event buffer.
b.evbuf = b.evbuf[1:]

Expand Down
2 changes: 1 addition & 1 deletion sdl/v2_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func Test_V2_1_Cross_Validates(t *testing.T) {

// This is a single document producing both the manifest & deployment groups
// These should always agree with each other. If this test fails at least one of the
// following is ture
// following is true, pure
// 1. Cross validation logic is wrong
// 2. The DeploymentGroups() & Manifest() code do not agree with one another
err = m.CheckAgainstGSpecs(dgroups)
Expand Down
2 changes: 1 addition & 1 deletion sdl/v2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func Test_V2_Cross_Validates(t *testing.T) {

// This is a single document producing both the manifest & deployment groups
// These should always agree with each other. If this test fails at least one of the
// following is ture
// following is true, pure
// 1. Cross validation logic is wrong
// 2. The DeploymentGroups() & Manifest() code do not agree with one another
err = m.CheckAgainstGSpecs(dgroups)
Expand Down
2 changes: 1 addition & 1 deletion upgrades/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Add new upgrades after this line based on the template above

##### v0.34.0

1. Extend authz implementation for DeploymentDeposit to allow grantee re-use of unspent funds.
1. Extend authz implementation for DeploymentDeposit to allow grantee reuse of unspent funds.
- Example of previous behavior:
Deployment authz granted from account B (grantor) to account A (grantee) in amount of 5AKT.
Deployment is created with authorized spend and deposit amount of 3AKT.
Expand Down