Skip to content

Commit 6625693

Browse files
committed
Changing import of crypto/sha3
- Import crypto/sha3 from `golang.org/x` instead of `github.com/ethereum/go-ethereum`. This change was introduced in Byzantium v1.8.21 PR: ethereum/go-ethereum#18390 For our upgrade we also need to point to golang.org/x/crypto/sha3 so the dependencies won't break.
1 parent 9c7feaf commit 6625693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/chain/local/local.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import (
99
"sort"
1010
"sync"
1111

12-
"github.com/ethereum/go-ethereum/crypto/sha3"
1312
relaychain "github.com/keep-network/keep-core/pkg/beacon/relay/chain"
1413
relayconfig "github.com/keep-network/keep-core/pkg/beacon/relay/config"
1514
"github.com/keep-network/keep-core/pkg/beacon/relay/event"
@@ -18,6 +17,7 @@ import (
1817
"github.com/keep-network/keep-core/pkg/gen/async"
1918
"github.com/keep-network/keep-core/pkg/operator"
2019
"github.com/keep-network/keep-core/pkg/subscription"
20+
"golang.org/x/crypto/sha3"
2121
)
2222

2323
var seedGroupPublicKey = []byte("seed to group public key")

0 commit comments

Comments
 (0)