We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1f226f commit 9f6e7aaCopy full SHA for 9f6e7aa
module/fork_spec.go
@@ -5,7 +5,6 @@ import (
5
"fmt"
6
"github.com/cockroachdb/errors"
7
"github.com/hyperledger-labs/yui-relayer/log"
8
- "math"
9
"os"
10
"slices"
11
"strconv"
@@ -78,8 +77,7 @@ func GetForkParameters(network Network) []*ForkSpec {
78
77
case Testnet:
79
hardForks[indexPascalHF].HeightOrTimestamp = &ForkSpec_Height{Height: 48576786}
80
hardForks[indexLorentzHF].HeightOrTimestamp = &ForkSpec_Height{Height: 49791365}
81
- //TODO fix height
82
- hardForks[indexMaxwellHF].HeightOrTimestamp = &ForkSpec_Height{Height: math.MaxUint64}
+ hardForks[indexMaxwellHF].HeightOrTimestamp = &ForkSpec_Height{Height: 52552978}
83
return hardForks
84
case Mainnet:
85
hardForks[indexPascalHF].HeightOrTimestamp = &ForkSpec_Height{Height: 47618307}
0 commit comments