File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ module github.com/ava-labs/avalanchego
9
9
// - Consider updating the version of golangci-lint (in scripts/lint.sh).
10
10
go 1.23.9
11
11
12
- replace simplex => ../Simplex
13
-
14
12
require (
15
13
github.com/DataDog/zstd v1.5.2
16
14
github.com/NYTimes/gziphandler v1.1.1
@@ -199,5 +197,4 @@ require (
199
197
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
200
198
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
201
199
sigs.k8s.io/yaml v1.3.0 // indirect
202
- simplex v0.0.0-00010101000000-000000000000
203
200
)
Original file line number Diff line number Diff line change @@ -7,17 +7,19 @@ import (
7
7
"encoding/asn1"
8
8
"errors"
9
9
"fmt"
10
- "simplex"
11
10
12
11
"github.com/ava-labs/avalanchego/ids"
13
12
"github.com/ava-labs/avalanchego/utils/crypto/bls"
13
+ "github.com/ava-labs/simplex"
14
14
)
15
15
16
16
var (
17
17
errSignatureVerificationFailed = errors .New ("signature verification failed" )
18
18
errSignerNotFound = errors .New ("signer not found in the membership set" )
19
19
)
20
20
21
+ var _ simplex.Signer = (* BLSSigner )(nil )
22
+
21
23
type SignFunc func (msg []byte ) (* bls.Signature , error )
22
24
23
25
// BLSSigner signs messages encoded with the provided ChainID and NetworkID
You can’t perform that action at this time.
0 commit comments