Skip to content

Commit 7fc0604

Browse files
committed
studio: Fix a few type wildcard warnings. #367
1 parent 2213161 commit 7fc0604

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

studio/src/View/Studio.purs

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,16 @@ handleAction = case _ of
9090
runProcess txIngester
9191
where
9292
-- | This ingests transactions produced from the HTTP API into our transaction storage.
93-
txIngester :: Process (HalogenM State Action _ Void m) Unit
93+
txIngester :: Process (HalogenM State Action ChildSlots Void m) Unit
9494
txIngester = txProducer `connect` txConsumer
9595

96-
txProducer :: Producer HashTx (HalogenM State Action _ Void m) Unit
96+
txProducer :: Producer HashTx (HalogenM State Action ChildSlots Void m) Unit
9797
txProducer = Stbx.requestTransactionsToRootM endpointUrl startHash
9898

99-
txConsumer :: Consumer HashTx (HalogenM State Action _ Void m) Unit
99+
txConsumer :: Consumer HashTx (HalogenM State Action ChildSlots Void m) Unit
100100
txConsumer = consumer txStorer
101101
where
102-
txStorer :: HashTx -> (HalogenM State Action _ Void m) (Maybe _)
102+
txStorer :: HashTx -> (HalogenM State Action ChildSlots Void m) (Maybe Unit)
103103
txStorer itx@{id, tx} = do
104104
H.modify_ (\state -> state { hashSpace = AdjacencySpace.update Stbx.getPrevious state.hashSpace id tx })
105105
H.liftEffect $ log $ show itx

0 commit comments

Comments
 (0)