Skip to content

Commit

Permalink
fix: coinswap module is added to simulation manager
Browse files Browse the repository at this point in the history
  • Loading branch information
poorphd committed Aug 2, 2023
1 parent 5ac28de commit ca2307f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,9 @@ func NewCanto(
feemarket.NewAppModule(app.FeeMarketKeeper),

// TODO: Modules that have not yet been implemented for simulation
// govshuttle, csr, recovery, erc20
// govshuttle, csr, inflation, erc20

coinswap.NewAppModule(appCodec, app.CoinswapKeeper, app.AccountKeeper, app.BankKeeper),
)

app.sm.RegisterStoreDecoders()
Expand All @@ -765,10 +767,9 @@ func NewCanto(

maxGasWanted := cast.ToUint64(appOpts.Get(srvflags.EVMMaxTxGasWanted))
options := ante.HandlerOptions{
AccountKeeper: app.AccountKeeper,
BankKeeper: app.BankKeeper,
EvmKeeper: app.EvmKeeper,
//StakingKeeper: app.StakingKeeper,
AccountKeeper: app.AccountKeeper,
BankKeeper: app.BankKeeper,
EvmKeeper: app.EvmKeeper,
FeegrantKeeper: app.FeeGrantKeeper,
IBCKeeper: app.IBCKeeper,
FeeMarketKeeper: app.FeeMarketKeeper,
Expand Down

0 comments on commit ca2307f

Please sign in to comment.