File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -195,13 +195,11 @@ handlePABReq contractEnv req = do
195195 ------------------------
196196 -- Unhandled requests --
197197 ------------------------
198- -- AwaitTimeReq t -> pure $ AwaitTimeResp t
199- -- AwaitUtxoSpentReq txOutRef -> pure $ AwaitUtxoSpentResp ChainIndexTx
200- -- AwaitUtxoProducedReq Address -> pure $ AwaitUtxoProducedResp (NonEmpty ChainIndexTx)
201- -- AwaitTxOutStatusChangeReq TxOutRef
202- -- ExposeEndpointReq ActiveEndpoint -> ExposeEndpointResp EndpointDescription (EndpointValue JSON.Value)
203- -- YieldUnbalancedTxReq UnbalancedTx
204- unsupported -> error (" Unsupported PAB effect: " ++ show unsupported)
198+ AwaitUtxoSpentReq _ -> error (" Unsupported PAB effect: " ++ show req)
199+ AwaitUtxoProducedReq _ -> error (" Unsupported PAB effect: " ++ show req)
200+ AwaitTxOutStatusChangeReq _ -> error (" Unsupported PAB effect: " ++ show req)
201+ ExposeEndpointReq _ -> error (" Unsupported PAB effect: " ++ show req)
202+ YieldUnbalancedTxReq _ -> error (" Unsupported PAB effect: " ++ show req)
205203
206204 printBpiLog @ w Debug $ pretty resp
207205 pure resp
You can’t perform that action at this time.
0 commit comments