We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 350e0ba commit afae125Copy full SHA for afae125
module/fork_spec.go
@@ -106,8 +106,9 @@ func GetForkParameters(network Network) []*ForkSpec {
106
// https://bscscan.com/block/52337091
107
// https://github.com/bnb-chain/bsc/releases/tag/v1.5.16
108
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}
+ // https://bscscan.com/block/75140593
+ // https://github.com/bnb-chain/bsc/releases/tag/v1.6.4
111
+ hardForks[indexFermiHF].HeightOrTimestamp = &ForkSpec_Height{Height: 75140593}
112
return hardForks
113
}
114
return nil
0 commit comments