Skip to content

Commit afae125

Browse files
authored
fix fermi height (#78)
1 parent 350e0ba commit afae125

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

module/fork_spec.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ func GetForkParameters(network Network) []*ForkSpec {
106106
// https://bscscan.com/block/52337091
107107
// https://github.com/bnb-chain/bsc/releases/tag/v1.5.16
108108
hardForks[indexMaxwellHF].HeightOrTimestamp = &ForkSpec_Height{Height: 52337091}
109-
// https://github.com/bnb-chain/bsc/pull/3466/files
110-
hardForks[indexFermiHF].HeightOrTimestamp = &ForkSpec_Timestamp{Timestamp: 1768357800 * 1000}
109+
// https://bscscan.com/block/75140593
110+
// https://github.com/bnb-chain/bsc/releases/tag/v1.6.4
111+
hardForks[indexFermiHF].HeightOrTimestamp = &ForkSpec_Height{Height: 75140593}
111112
return hardForks
112113
}
113114
return nil

0 commit comments

Comments
 (0)