Skip to content

Commit f51217f

Browse files
committed
Enable EnableFutureGenesis by default
1 parent 72da4e5 commit f51217f

File tree

1 file changed

+1
-1
lines changed
  • cardano-db-sync/src/Cardano/DbSync/Config

1 file changed

+1
-1
lines changed

cardano-db-sync/src/Cardano/DbSync/Config/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ parseGenSyncNodeConfig o =
374374
<$> fmap NetworkName (o .: "NetworkName")
375375
<*> parseJSON (Object o)
376376
<*> fmap NodeConfigFile (o .: "NodeConfigFile")
377-
<*> fmap (fromMaybe False) (o .:? "EnableFutureGenesis")
377+
<*> fmap (fromMaybe True) (o .:? "EnableFutureGenesis")
378378
<*> o .: "EnableLogging"
379379
<*> o .: "EnableLogMetrics"
380380
<*> fmap (fromMaybe 8080) (o .:? "PrometheusPort")

0 commit comments

Comments
 (0)