Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #68 from strangelove-ventures/kamoser/igp-int-test
Browse files Browse the repository at this point in the history
Kamoser/igp int test
  • Loading branch information
KyleMoser authored Sep 11, 2023
2 parents ae827b5 + 93652eb commit a3e5eb5
Show file tree
Hide file tree
Showing 56 changed files with 8,069 additions and 612 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,4 @@ proto-check-breaking:
.PHONY: all install install-debug \
go-mod-cache draw-deps clean build format \
test test-all test-build test-cover test-unit test-race \
test-sim-import-export build-windows-client \
test-sim-import-export build-windows-client \
5 changes: 3 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -630,11 +630,12 @@ func NewSimApp(
)

// TODO: How are the domains registered selected.. using 12345 as a placeholder
domain := uint32(12345)
//domain := uint32(12345)

app.IgpKeeper = igpkeeper.NewKeeper(appCodec, keys[igptypes.StoreKey], app.BankKeeper.(bankkeeper.SendKeeper), app.StakingKeeper, "")
app.IsmKeeper = ismkeeper.NewKeeper(appCodec, keys[ismtypes.StoreKey], authtypes.NewModuleAddress(govtypes.ModuleName).String())
app.MailboxKeeper = mailboxkeeper.NewKeeper(appCodec, keys[mailboxtypes.StoreKey], &app.WasmKeeper, &app.IsmKeeper, domain)
app.MailboxKeeper = mailboxkeeper.NewKeeper(appCodec, keys[mailboxtypes.StoreKey], &app.WasmKeeper, &app.IsmKeeper)
//app.MailboxKeeper.SetDomain(domain)

// The gov proposal types can be individually enabled
if len(enabledProposals) != 0 {
Expand Down
Loading

0 comments on commit a3e5eb5

Please sign in to comment.