Skip to content

Commit

Permalink
refactor!: use store service in x/nft (cosmos#15588)
Browse files Browse the repository at this point in the history
  • Loading branch information
facundomedica authored Mar 29, 2023
1 parent b5fbe8e commit b9051bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ func NewSimApp(
),
)

app.NFTKeeper = nftkeeper.NewKeeper(keys[nftkeeper.StoreKey], appCodec, app.AccountKeeper, app.BankKeeper)
app.NFTKeeper = nftkeeper.NewKeeper(runtime.NewKVStoreService(keys[nftkeeper.StoreKey]), appCodec, app.AccountKeeper, app.BankKeeper)

// create evidence keeper with router
evidenceKeeper := evidencekeeper.NewKeeper(
Expand Down

0 comments on commit b9051bc

Please sign in to comment.