Remove bazel-go-ethereum fork, use upstream go-ethereum (#9725)

* Check in go-ethereum crypto/sepc256k1 package with proper build rules

* gaz

* Add karalabe/usb

* viz improvement

* Remove bazel-go-ethereum, use vendored libraries only

* move vendor stuff to third_party so that go mod wont be mad anymore

* fix geth e2e flags

* fix geth e2e flags

* remove old rules_foreign_cc toolchain

* Update cross compile docker image to support os x

* works for geth build

* remove copy of sepc256k1

* revert changes in tools/cross-toolchain

* gaz

* Update go-ethereum to 1.10.10

* Revert "revert changes in tools/cross-toolchain"

This reverts commit 2e8128f7c3.

* revert tags changes

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
Preston Van Loon
2021-10-18 19:00:22 -05:00
committed by GitHub
parent 7b8aedbfe4
commit 65db331eaf
23 changed files with 800 additions and 126 deletions

View File

@@ -67,12 +67,12 @@ func (node *Eth1Node) Start(ctx context.Context) error {
args := []string{
fmt.Sprintf("--datadir=%s", eth1Path),
fmt.Sprintf("--rpcport=%d", e2e.TestParams.Eth1RPCPort),
fmt.Sprintf("--http.port=%d", e2e.TestParams.Eth1RPCPort),
fmt.Sprintf("--ws.port=%d", e2e.TestParams.Eth1RPCPort+1),
"--rpc",
"--rpcaddr=127.0.0.1",
"--rpccorsdomain=\"*\"",
"--rpcvhosts=\"*\"",
"--http",
"--http.addr=127.0.0.1",
"--http.corsdomain=\"*\"",
"--http.vhosts=\"*\"",
"--rpc.allow-unprotected-txs",
"--ws",
"--ws.addr=127.0.0.1",