Skip to content

Commit

Permalink
go.mod: fix crypto/secp256k1 package replacement (#1178)
Browse files Browse the repository at this point in the history
- `go.mod` must replace the local package rather than a remote so the
  build will be consistently run against the current code base
  • Loading branch information
trung committed Apr 27, 2021
1 parent 1c2e94b commit f2edcc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ go 1.15
// Quorum - Replace Go modules that use modifications done by us
replace (
github.com/coreos/etcd => github.com/Consensys/etcd v3.3.13-quorum197+incompatible
github.com/ethereum/go-ethereum/crypto/secp256k1 => github.com/ConsenSys/quorum/crypto/secp256k1 v0.0.0-20210223160031-6e8585c2a9ad
github.com/ethereum/go-ethereum/crypto/secp256k1 => ./crypto/secp256k1
)

// End Quorum

require (
Expand Down

0 comments on commit f2edcc3

Please sign in to comment.