Skip to content

Commit

Permalink
Merge pull request #135
Browse files Browse the repository at this point in the history
Added and improved testcases
  • Loading branch information
bsrinivas8687 authored Jul 18, 2021
2 parents 53cc1db + c0f351c commit 9775e13
Show file tree
Hide file tree
Showing 124 changed files with 13,577 additions and 1,136 deletions.
4 changes: 2 additions & 2 deletions app.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ func NewApp(
upgrade.NewAppModule(app.upgradeKeeper),
transferModule,
swap.NewAppModule(app.cdc, app.swapKeeper),
vpn.NewAppModule(app.accountKeeper, app.vpnKeeper),
vpn.NewAppModule(app.cdc, app.accountKeeper, app.bankKeeper, app.vpnKeeper),
)

// NOTE: order is very important here
Expand Down Expand Up @@ -443,7 +443,7 @@ func NewApp(
staking.NewAppModule(app.cdc, app.stakingKeeper, app.accountKeeper, app.bankKeeper),
transferModule,
swap.NewAppModule(app.cdc, app.swapKeeper),
vpn.NewAppModule(app.accountKeeper, app.vpnKeeper),
vpn.NewAppModule(app.cdc, app.accountKeeper, app.bankKeeper, app.vpnKeeper),
)
app.simulationManager.RegisterStoreDecoders()

Expand Down
Loading

0 comments on commit 9775e13

Please sign in to comment.