Skip to content

Commit

Permalink
Merge pull request #411 from scorpioborn/feature/proto-signer-prop
Browse files Browse the repository at this point in the history
Feature / Add signer and cosmos address to protos
  • Loading branch information
scorpioborn authored Jun 3, 2024
2 parents bf42ed0 + d11f0c2 commit cba4aff
Show file tree
Hide file tree
Showing 66 changed files with 1,195 additions and 1,542 deletions.
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
3 changes: 2 additions & 1 deletion app/upgrades/v5/upgrades.go → app/upgrades/v10/upgrades.go
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

0 comments on commit cba4aff

Please sign in to comment.