Skip to content

Commit 8ea22e9

Browse files
authored
Merge pull request #72 from datachainlab/mainnet_maxwell_height
Fix maxwell height
2 parents 9d3ff46 + 17d90ae commit 8ea22e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

module/fork_spec.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ func GetForkParameters(network Network) []*ForkSpec {
8484
// https://bscscan.com/block/48773576
8585
// https://github.com/bnb-chain/bsc/releases/tag/v1.5.10
8686
hardForks[indexLorentzHF].HeightOrTimestamp = &ForkSpec_Height{Height: 48773576}
87+
// https://bscscan.com/block/52337091
8788
// https://github.com/bnb-chain/bsc/releases/tag/v1.5.16
88-
hardForks[indexMaxwellHF].HeightOrTimestamp = &ForkSpec_Timestamp{Timestamp: 1751250600 * 1000}
89+
hardForks[indexMaxwellHF].HeightOrTimestamp = &ForkSpec_Height{Height: 52337091}
8990
return hardForks
9091
}
9192
return nil

0 commit comments

Comments
 (0)