Skip to content

Commit

Permalink
fix test error
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamer-zq committed Apr 14, 2024
1 parent 07e25eb commit 5833912
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/token/depinject.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ type TokenInputs struct {

AccountKeeper types.AccountKeeper
BankKeeper types.BankKeeper
EVMKeeper types.EVMKeeper
ICS20Keeper types.ICS20Keeper

// TODO: EVMKeeper and ICS20Keeper must be injected in the production environment, where `optional:"true"` is only used for testing.
EVMKeeper types.EVMKeeper `optional:"true"`
ICS20Keeper types.ICS20Keeper `optional:"true"`

// LegacySubspace is used solely for migration of x/params managed parameters
LegacySubspace exported.Subspace `optional:"true"`
Expand Down

0 comments on commit 5833912

Please sign in to comment.