You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result <- liftIO $SQL.query conn getTransactionStatusSql (SQL.Only transactionId)
37
37
case result of
38
-
[SQL.OnlyTrue] ->returnTransactionConfirmed
39
-
[SQL.OnlyFalse] ->returnTransactionUnconfirmed
40
-
x -> throwError $CriticalError ("Expected exactly one result from get-transaction-status.sql but got "<> pack (show (length x)) <>" of them. This should never happen")
38
+
[info] ->return info
39
+
x -> throwError $CriticalError ("Expected exactly one result from get-transaction-status.sql but got "<> pack (show (length x)) <>" of them. This should never happen")
0 commit comments