File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -90,16 +90,16 @@ handleAction = case _ of
90
90
runProcess txIngester
91
91
where
92
92
-- | 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
94
94
txIngester = txProducer `connect` txConsumer
95
95
96
- txProducer :: Producer HashTx (HalogenM State Action _ Void m ) Unit
96
+ txProducer :: Producer HashTx (HalogenM State Action ChildSlots Void m ) Unit
97
97
txProducer = Stbx .requestTransactionsToRootM endpointUrl startHash
98
98
99
- txConsumer :: Consumer HashTx (HalogenM State Action _ Void m ) Unit
99
+ txConsumer :: Consumer HashTx (HalogenM State Action ChildSlots Void m ) Unit
100
100
txConsumer = consumer txStorer
101
101
where
102
- txStorer :: HashTx -> (HalogenM State Action _ Void m ) (Maybe _ )
102
+ txStorer :: HashTx -> (HalogenM State Action ChildSlots Void m ) (Maybe Unit )
103
103
txStorer itx@{id, tx} = do
104
104
H .modify_ (\state -> state { hashSpace = AdjacencySpace .update Stbx .getPrevious state.hashSpace id tx })
105
105
H .liftEffect $ log $ show itx
You can’t perform that action at this time.
0 commit comments