-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into faddat/go1.19
- Loading branch information
Showing
65 changed files
with
3,298 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# CODEOWNERS: https://help.github.com/articles/about-codeowners/ | ||
|
||
# Primary repo maintainers | ||
* @alexanderbez @zmanian @yaruwangway @crodriguezvega @jackzampolin @mmulji-ic @glnro @jtremback @mpoke | ||
* @alexanderbez @zmanian @yaruwangway @crodriguezvega @jackzampolin @mmulji-ic @glnro @jtremback @mpoke @sainoe @MSalopek @smarshall-spitzbart | ||
|
||
# Governance Process and Docs maintainers | ||
docs/governance/* @hxrts @uditvira @LexaMichaelides @yaruwangway | ||
docs/governance/* @uditvira @LexaMichaelides @yaruwangway | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package gaia | ||
|
||
import ( | ||
capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" | ||
ibckeeper "github.com/cosmos/ibc-go/v4/modules/core/keeper" | ||
ibcstakinginterface "github.com/cosmos/interchain-security/legacy_ibc_testing/core" | ||
"github.com/cosmos/interchain-security/testutil/e2e" | ||
ibcproviderkeeper "github.com/cosmos/interchain-security/x/ccv/provider/keeper" | ||
) | ||
|
||
// ProviderApp interface implementations for e2e tests | ||
|
||
// GetProviderKeeper implements the ProviderApp interface. | ||
func (app *GaiaApp) GetProviderKeeper() ibcproviderkeeper.Keeper { //nolint:nolintlint | ||
return app.ProviderKeeper | ||
} | ||
|
||
// GetStakingKeeper implements the TestingApp interface. Needed for ICS. | ||
func (app *GaiaApp) GetStakingKeeper() ibcstakinginterface.StakingKeeper { //nolint:nolintlint | ||
return app.StakingKeeper | ||
} | ||
|
||
// GetIBCKeeper implements the TestingApp interface. | ||
func (app *GaiaApp) GetIBCKeeper() *ibckeeper.Keeper { //nolint:nolintlint | ||
return app.IBCKeeper | ||
} | ||
|
||
// GetScopedIBCKeeper implements the TestingApp interface. | ||
func (app *GaiaApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper { //nolint:nolintlint | ||
return app.ScopedIBCKeeper | ||
} | ||
|
||
// GetE2eStakingKeeper implements the ProviderApp interface. | ||
func (app *GaiaApp) GetE2eStakingKeeper() e2e.E2eStakingKeeper { //nolint:nolintlint | ||
return app.StakingKeeper | ||
} | ||
|
||
// GetE2eBankKeeper implements the ProviderApp interface. | ||
func (app *GaiaApp) GetE2eBankKeeper() e2e.E2eBankKeeper { //nolint:nolintlint | ||
return app.BankKeeper | ||
} | ||
|
||
// GetE2eSlashingKeeper implements the ProviderApp interface. | ||
func (app *GaiaApp) GetE2eSlashingKeeper() e2e.E2eSlashingKeeper { //nolint:nolintlint | ||
return app.SlashingKeeper | ||
} | ||
|
||
// GetE2eDistributionKeeper implements the ProviderApp interface. | ||
func (app *GaiaApp) GetE2eDistributionKeeper() e2e.E2eDistributionKeeper { //nolint:nolintlint | ||
return app.DistrKeeper | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.