Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nkryuchkov committed Feb 9, 2024
1 parent b122c47 commit 0db6287
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ekm/eth_key_manager_signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewETHKeyManagerSigner(logger *zap.Logger, db basedb.Database, network netw
}

slashingProtector := slashingprotection.NewNormalProtection(signerStore)
beaconSigner := signer.NewSimpleSigner(wallet, slashingProtector, core.Network(network.Beacon.String())) // TODO: what if a string is not supported by ekm?
beaconSigner := signer.NewSimpleSigner(wallet, slashingProtector, network.Beacon)

return &ethKeyManagerSigner{
wallet: wallet,
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.20
require (
github.com/aquasecurity/table v1.8.0
github.com/attestantio/go-eth2-client v0.19.11-0.20240129201044-9d799aaab2bd
github.com/bloxapp/eth2-key-manager v1.4.0
github.com/bloxapp/eth2-key-manager v1.4.1-0.20240209135933-05531dc00c3d
github.com/bloxapp/ssv-spec v0.3.6
github.com/btcsuite/btcd/btcec/v2 v2.3.2
github.com/cespare/xxhash/v2 v2.2.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/bits-and-blooms/bitset v1.7.0 h1:YjAGVd3XmtK9ktAbX8Zg2g2PwLIMjGREZJHlV4j7NEo=
github.com/bits-and-blooms/bitset v1.7.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
github.com/bloxapp/eth2-key-manager v1.4.0 h1:fwAW886z2mSUb/u4Kq/ln+wvSkIxLqEgxvE+x8gZiz8=
github.com/bloxapp/eth2-key-manager v1.4.0/go.mod h1:m2DsvNCyLAAcgkN2JuroXUGpM61OeKSclmWuaRNW4Ss=
github.com/bloxapp/eth2-key-manager v1.4.1-0.20240209135933-05531dc00c3d h1:IhV7Zb9ZbR87M8bDEUHYqN5EtUshX/O3m8kfqENzAbk=
github.com/bloxapp/eth2-key-manager v1.4.1-0.20240209135933-05531dc00c3d/go.mod h1:m2DsvNCyLAAcgkN2JuroXUGpM61OeKSclmWuaRNW4Ss=
github.com/bloxapp/ssv-spec v0.3.6 h1:kTG9AUEdwA4qgy9wWVxWDu83YymQnH+E6yAQWcSvFD8=
github.com/bloxapp/ssv-spec v0.3.6/go.mod h1:f9UvuHTb8N3PQpvA6fKYW/l7fzkfyX0Oj9qS34cSOVw=
github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g=
Expand Down

0 comments on commit 0db6287

Please sign in to comment.