Skip to content

Commit d90f46a

Browse files
committed
Pin herumi
1 parent 5cb1585 commit d90f46a

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/rocket-pool/smartnode
33
go 1.21.8
44

55
// Do not update until you can test that its regression on ARM is resolved
6-
require github.com/herumi/bls-eth-go-binary v1.28.1 // indirect
6+
require github.com/herumi/bls-eth-go-binary v1.28.1
77

88
require (
99
github.com/alessio/shellescape v1.4.1

rocketpool/rocketpool.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,15 @@ import (
1111
"github.com/rocket-pool/smartnode/rocketpool/watchtower"
1212
"github.com/rocket-pool/smartnode/shared"
1313
apiutils "github.com/rocket-pool/smartnode/shared/utils/api"
14+
15+
blsversionpin "github.com/herumi/bls-eth-go-binary/bls"
1416
)
1517

18+
// This variable simple ensures we have a direct dependency on bls-eth-go-binary, so it doesn't get tidied out of go.mod
19+
// we should probably re-test latest versions of the herumi packages on ARM to see if the issue Joe encountered has been
20+
// resolved yet.
21+
var _ blsversionpin.ID
22+
1623
// Run
1724
func main() {
1825

0 commit comments

Comments
 (0)