Skip to content

Commit 9f6e7aa

Browse files
author
Naohiro Yoshida
committed
fix maxwell height
Signed-off-by: Naohiro Yoshida <naohiro.yoshida@datachain.jp>
1 parent a1f226f commit 9f6e7aa

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

module/fork_spec.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"fmt"
66
"github.com/cockroachdb/errors"
77
"github.com/hyperledger-labs/yui-relayer/log"
8-
"math"
98
"os"
109
"slices"
1110
"strconv"
@@ -78,8 +77,7 @@ func GetForkParameters(network Network) []*ForkSpec {
7877
case Testnet:
7978
hardForks[indexPascalHF].HeightOrTimestamp = &ForkSpec_Height{Height: 48576786}
8079
hardForks[indexLorentzHF].HeightOrTimestamp = &ForkSpec_Height{Height: 49791365}
81-
//TODO fix height
82-
hardForks[indexMaxwellHF].HeightOrTimestamp = &ForkSpec_Height{Height: math.MaxUint64}
80+
hardForks[indexMaxwellHF].HeightOrTimestamp = &ForkSpec_Height{Height: 52552978}
8381
return hardForks
8482
case Mainnet:
8583
hardForks[indexPascalHF].HeightOrTimestamp = &ForkSpec_Height{Height: 47618307}

0 commit comments

Comments
 (0)