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

Feature / Add signer and cosmos address to protos #411

Merged
Merged
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
18 changes: 2 additions & 16 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,7 @@ import (
"github.com/sge-network/sge/app/keepers"
sgeappparams "github.com/sge-network/sge/app/params"
"github.com/sge-network/sge/app/upgrades"
v1 "github.com/sge-network/sge/app/upgrades/v1"
v2 "github.com/sge-network/sge/app/upgrades/v2"
v3 "github.com/sge-network/sge/app/upgrades/v3"
v4 "github.com/sge-network/sge/app/upgrades/v4"
v5 "github.com/sge-network/sge/app/upgrades/v5"
v6 "github.com/sge-network/sge/app/upgrades/v6"
v7 "github.com/sge-network/sge/app/upgrades/v7"
v8 "github.com/sge-network/sge/app/upgrades/v8"
v10 "github.com/sge-network/sge/app/upgrades/v10"
v9 "github.com/sge-network/sge/app/upgrades/v9"

// unnamed import of statik for swagger UI support
Expand All @@ -86,15 +79,8 @@ var (
// DefaultNodeHome default home directories for the application daemon
DefaultNodeHome string
Upgrades = []upgrades.Upgrade{
v1.Upgrade,
v2.Upgrade,
v3.Upgrade,
v4.Upgrade,
v5.Upgrade,
v6.Upgrade,
v7.Upgrade,
v8.Upgrade,
v9.Upgrade,
v10.Upgrade,
}
)

Expand Down
25 changes: 0 additions & 25 deletions app/upgrades/v1/consts.go

This file was deleted.

47 changes: 0 additions & 47 deletions app/upgrades/v1/upgrades.go

This file was deleted.

6 changes: 3 additions & 3 deletions app/upgrades/v7/consts.go → app/upgrades/v10/consts.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package v7
package v10

import (
store "github.com/cosmos/cosmos-sdk/store/types"

"github.com/sge-network/sge/app/upgrades"
)

// UpgradeName defines the on-chain upgrade name for the v1.5.3 upgrade.
const UpgradeName = "v1.5.3"
// UpgradeName defines the on-chain upgrade name for the v1.7.1 upgrade.
const UpgradeName = "v1.7.1"

var Upgrade = upgrades.Upgrade{
UpgradeName: UpgradeName,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package v5
package v10

import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

"github.com/sge-network/sge/app/keepers"
)

Expand Down
19 changes: 0 additions & 19 deletions app/upgrades/v2/consts.go

This file was deleted.

39 changes: 0 additions & 39 deletions app/upgrades/v2/upgrades.go

This file was deleted.

25 changes: 0 additions & 25 deletions app/upgrades/v3/consts.go

This file was deleted.

37 changes: 0 additions & 37 deletions app/upgrades/v3/upgrades.go

This file was deleted.

24 changes: 0 additions & 24 deletions app/upgrades/v4/consts.go

This file was deleted.

18 changes: 0 additions & 18 deletions app/upgrades/v4/upgrades.go

This file was deleted.

19 changes: 0 additions & 19 deletions app/upgrades/v5/consts.go

This file was deleted.

19 changes: 0 additions & 19 deletions app/upgrades/v6/consts.go

This file was deleted.

Loading
Loading