feat(core,runtime): transaction service (exec mode) (#19953)

This commit is contained in:
Julien Robert
2024-04-05 11:06:04 +00:00
committed by GitHub
parent ab45a85307
commit 60496848d9
8 changed files with 92 additions and 47 deletions
+7 -5
View File
@@ -7,6 +7,7 @@ import (
"cosmossdk.io/core/header"
"cosmossdk.io/core/router"
"cosmossdk.io/core/store"
"cosmossdk.io/core/transaction"
"cosmossdk.io/log"
)
@@ -14,11 +15,12 @@ import (
type Environment struct {
Logger log.Logger
BranchService branch.Service
EventService event.Service
GasService gas.Service
HeaderService header.Service
RouterService router.Service
BranchService branch.Service
EventService event.Service
GasService gas.Service
HeaderService header.Service
RouterService router.Service
TransactionService transaction.Service
KVStoreService store.KVStoreService
MemStoreService store.MemoryStoreService