Skip to content

Commit 8639b55

Browse files
committed
Fourmolise
1 parent 2da504b commit 8639b55

File tree

1 file changed

+4
-2
lines changed
  • cardano-db-sync/src/Cardano/DbSync/Era/Shelley

1 file changed

+4
-2
lines changed

cardano-db-sync/src/Cardano/DbSync/Era/Shelley/Insert.hs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,14 +689,16 @@ insertConwayDelegCert syncEnv txId idx mRedeemerId epochNo slotNo dCert =
689689
case dCert of
690690
ConwayRegCert cred _dep ->
691691
when (ioShelley iopts) $
692-
insertStakeRegistration epochNo txId idx $ Generic.annotateStakingCred network cred
692+
insertStakeRegistration epochNo txId idx $
693+
Generic.annotateStakingCred network cred
693694
ConwayUnRegCert cred _dep ->
694695
when (ioShelley iopts) $
695696
insertStakeDeregistration cache network epochNo txId idx mRedeemerId cred
696697
ConwayDelegCert cred delegatee -> insertDeleg cred delegatee
697698
ConwayRegDelegCert cred delegatee _dep -> do
698699
when (ioShelley iopts) $
699-
insertStakeRegistration epochNo txId idx $ Generic.annotateStakingCred network cred
700+
insertStakeRegistration epochNo txId idx $
701+
Generic.annotateStakingCred network cred
700702
insertDeleg cred delegatee
701703
where
702704
insertDeleg cred = \case

0 commit comments

Comments
 (0)