From 6b4bcaf51bedd7f2b5c004dfde75cc90f8753efd Mon Sep 17 00:00:00 2001 From: Naohiro Yoshida Date: Wed, 30 Apr 2025 12:29:30 +0900 Subject: [PATCH] fix lorentz height in mainnet Signed-off-by: Naohiro Yoshida --- module/fork_spec.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/fork_spec.go b/module/fork_spec.go index 7cdb632a..1959c14d 100644 --- a/module/fork_spec.go +++ b/module/fork_spec.go @@ -76,10 +76,10 @@ func GetForkParameters(network Network) []*ForkSpec { EpochLength: 200, MaxTurnLength: 9, }, - // https://github.com/bnb-chain/bsc/blob/1ded6d7ecfc1a9b71accab03aef99d816eeda446/params/config.go#L192 + // https://bscscan.com/block/48773576 // https://github.com/bnb-chain/bsc/releases/tag/v1.5.10 { - HeightOrTimestamp: &ForkSpec_Timestamp{Timestamp: 1745903100 * 1000}, + HeightOrTimestamp: &ForkSpec_Height{Height: 48773576}, AdditionalHeaderItemCount: 1, EpochLength: 500, MaxTurnLength: 64,