feat(mint): add env bundler to mint module (#19398)

Co-authored-by: Marko <marbar3778@yahoo.com>
This commit is contained in:
samricotta
2024-02-13 23:17:13 +00:00
committed by GitHub
co-authored by Marko
parent 8fb9ca87b2
commit 33868606a8
18 changed files with 70 additions and 39 deletions
+2
View File
@@ -6,6 +6,7 @@ import (
"cosmossdk.io/core/gas"
"cosmossdk.io/core/header"
"cosmossdk.io/core/store"
"cosmossdk.io/log"
)
// Environment is used to get all services to their respective module
@@ -16,4 +17,5 @@ type Environment struct {
HeaderService header.Service
KVStoreService store.KVStoreService
MemStoreService store.MemoryStoreService
Logger log.Logger
}