feat(runtime): message router service (#19571)

This commit is contained in:
Julien Robert
2024-03-04 10:25:43 +00:00
committed by GitHub
parent 83a7f0ee37
commit cfd426fdb3
22 changed files with 419 additions and 55 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ func (s *IntegrationTestSuite) SetupSuite() {
s.testClient = testdata.NewQueryClient(queryHelper)
kvs := runtime.NewKVStoreService(keys[countertypes.StoreKey])
counterKeeper := counterkeeper.NewKeeper(kvs, runtime.EventService{})
counterKeeper := counterkeeper.NewKeeper(runtime.NewEnvironment(kvs, logger))
countertypes.RegisterQueryServer(queryHelper, counterKeeper)
s.counterClient = countertypes.NewQueryClient(queryHelper)
}