Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit ab091b8

Browse files
committed
Fix Shelley launch time in slot configs
1 parent ff494a5 commit ab091b8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

plutus-chain-index/src/Plutus/ChainIndex/Config.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ defaultConfig = ChainIndexConfig
5858
, cicSecurityParam = 2160
5959
, cicSlotConfig =
6060
SlotConfig
61-
{ scSlotZeroTime = 1591566291000
61+
{ scSlotZeroTime = 1596059091000
6262
, scSlotLength = 1000
6363
}
6464
}

plutus-pab/plutus-pab.yaml.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ nodeServerConfig:
2222
mscKeptBlocks: 100
2323
mscNetworkId: "1097911063" # Testnet network ID (main net = empty string)
2424
mscSlotConfig:
25-
scSlotZeroTime: 1591566291000 # Wednesday, July 29, 2020 21:44:51 - shelley launch time in milliseconds
25+
scSlotZeroTime: 1596059091000 # Wednesday, July 29, 2020 21:44:51 - shelley launch time in milliseconds
2626
scSlotLength: 1000 # In milliseconds
2727
mscFeeConfig:
2828
fcConstantFee:

plutus-pab/sync-client/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ data Configuration = Configuration
3232
slotConfig :: SlotConfig
3333
slotConfig =
3434
SlotConfig
35-
{ scSlotZeroTime = 1591566291000
35+
{ scSlotZeroTime = 1596059091000
3636
, scSlotLength = 1000
3737
}
3838

plutus-pab/tx-inject/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ nodeServerConfig:
1818
mscKeptBlocks: 100000
1919
mscNetworkId: "1097911063"
2020
mscSlotConfig:
21-
scSlotZeroTime: 1591566291000 # Wednesday, July 29, 2020 21:44:51 - shelley launch time in milliseconds
21+
scSlotZeroTime: 1596059091000 # Wednesday, July 29, 2020 21:44:51 - shelley launch time in milliseconds
2222
scSlotLength: 1000 # In milliseconds
2323
mscFeeConfig:
2424
fcConstantFee:

0 commit comments

Comments
 (0)