File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
cardano-chain-gen/src/Cardano/Mock/Forging/Tx
cardano-db-sync/src/Cardano/DbSync Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 8
8
{-# LANGUAGE TypeApplications #-}
9
9
{-# LANGUAGE TypeFamilies #-}
10
10
11
-
12
-
13
-
14
-
15
11
module Cardano.Mock.Forging.Tx.Conway (
16
12
ConwayLedgerState ,
17
13
Babbage. TxOutScriptType (.. ),
Original file line number Diff line number Diff line change 1
1
{-# LANGUAGE AllowAmbiguousTypes #-}
2
2
{-# LANGUAGE DataKinds #-}
3
3
{-# LANGUAGE FlexibleContexts #-}
4
+ {-# LANGUAGE LambdaCase #-}
4
5
{-# LANGUAGE OverloadedStrings #-}
5
6
{-# LANGUAGE RankNTypes #-}
6
7
{-# LANGUAGE ScopedTypeVariables #-}
7
8
{-# LANGUAGE TypeApplications #-}
8
9
{-# LANGUAGE TypeFamilies #-}
9
10
{-# LANGUAGE NoImplicitPrelude #-}
10
- {-# LANGUAGE LambdaCase #-}
11
11
12
12
module Cardano.DbSync.Sync (
13
13
ConfigFile (.. ),
@@ -138,11 +138,11 @@ runSyncNodeClient metricsSetters syncEnv iomgr trce tc (SocketPath socketPath) =
138
138
{ spAddress = Snocket. localAddressFromPath socketPath
139
139
, spReconnectionDelay = Nothing
140
140
, spCompleteCb = \ case
141
- Left e ->
142
- case fromException e of
143
- Just AsyncCancelled -> Abort
144
- _other -> Reconnect
145
- Right _ -> Reconnect
141
+ Left e ->
142
+ case fromException e of
143
+ Just AsyncCancelled -> Abort
144
+ _other -> Reconnect
145
+ Right _ -> Reconnect
146
146
}
147
147
148
148
subscriptionTracers =
You can’t perform that action at this time.
0 commit comments