Skip to content

Commit 3576362

Browse files
committed
vendor: update go-ethereum
``` go get github.com/ethereum/go-ethereum@6c76b813df6d53b86fac17471e9a31afd20c481e go mod tidy go mod vendor ```
1 parent ff197b7 commit 3576362

File tree

647 files changed

+95510
-13463
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

647 files changed

+95510
-13463
lines changed

backend/coins/eth/account.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,10 @@ func (account *Account) EthSignWalletConnectTx(
963963
// account.coin.Net() will only incude ChainID 1 in its current *params.ChainConfig
964964
// Needs to be set to the appropriuate chain id for each supported network
965965
//TODO we also need to connect to an appropriate RPC for each L2 network/sidechain
966-
signer := types.MakeSigner(account.coin.Net(), account.blockNumber)
966+
967+
// BlockTime needed to decide whether to use the Cancun signer. We don't need that for now.
968+
blockTime := uint64(0)
969+
signer := types.MakeSigner(account.coin.Net(), account.blockNumber, blockTime)
967970
signedTx, err := tx.WithSignature(signer, signature)
968971
if err != nil {
969972
return "", "", err

go.mod

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/digitalbitbox/bitbox02-api-go v0.0.0-20240220211529-3ff3e90d0f52
1111
github.com/digitalbitbox/block-client-go v0.0.0-20240228201430-dd85a15ace33
1212
github.com/digitalbitbox/usb v0.0.0-20230208083750-001c519abaff
13-
github.com/ethereum/go-ethereum v1.10.21
13+
github.com/ethereum/go-ethereum v1.13.5-0.20240312132935-6c76b813df6d
1414
github.com/flynn/noise v1.1.0
1515
github.com/gorilla/mux v1.8.1
1616
github.com/gorilla/websocket v1.5.1
@@ -24,27 +24,38 @@ require (
2424
)
2525

2626
require (
27-
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
27+
github.com/Microsoft/go-winio v0.6.1 // indirect
28+
github.com/StackExchange/wmi v1.2.1 // indirect
2829
github.com/aead/siphash v1.0.1 // indirect
30+
github.com/bits-and-blooms/bitset v1.10.0 // indirect
2931
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
3032
github.com/cespare/cp v1.1.1 // indirect
33+
github.com/consensys/bavard v0.1.13 // indirect
34+
github.com/consensys/gnark-crypto v0.12.1 // indirect
35+
github.com/crate-crypto/go-kzg-4844 v0.7.0 // indirect
3136
github.com/davecgh/go-spew v1.1.1 // indirect
32-
github.com/deckarep/golang-set v1.8.0 // indirect
37+
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
3338
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
3439
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
35-
github.com/go-ole/go-ole v1.2.1 // indirect
36-
github.com/go-stack/stack v1.8.0 // indirect
37-
github.com/google/uuid v1.2.0 // indirect
40+
github.com/ethereum/c-kzg-4844 v0.4.0 // indirect
41+
github.com/fsnotify/fsnotify v1.6.0 // indirect
42+
github.com/go-ole/go-ole v1.3.0 // indirect
43+
github.com/google/uuid v1.3.0 // indirect
44+
github.com/holiman/uint256 v1.2.4 // indirect
3845
github.com/kkdai/bstream v1.0.0 // indirect
46+
github.com/mmcloughlin/addchain v0.4.0 // indirect
3947
github.com/pmezard/go-difflib v1.0.0 // indirect
40-
github.com/prometheus/tsdb v0.10.0 // indirect
41-
github.com/rjeczalik/notify v0.9.2 // indirect
4248
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
4349
github.com/stretchr/objx v0.5.2 // indirect
44-
github.com/tklauser/go-sysconf v0.3.5 // indirect
45-
github.com/tklauser/numcpus v0.2.2 // indirect
50+
github.com/supranational/blst v0.3.11 // indirect
51+
github.com/tklauser/go-sysconf v0.3.12 // indirect
52+
github.com/tklauser/numcpus v0.6.1 // indirect
53+
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
54+
golang.org/x/mod v0.14.0 // indirect
55+
golang.org/x/sync v0.5.0 // indirect
4656
golang.org/x/sys v0.18.0 // indirect
57+
golang.org/x/tools v0.15.0 // indirect
4758
google.golang.org/protobuf v1.28.1 // indirect
48-
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
4959
gopkg.in/yaml.v3 v3.0.1 // indirect
60+
rsc.io/tmplfunc v0.0.3 // indirect
5061
)

go.sum

Lines changed: 110 additions & 77 deletions
Large diffs are not rendered by default.

vendor/github.com/Microsoft/go-winio/.gitattributes

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/.gitignore

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/.golangci.yml

Lines changed: 149 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/go-stack/stack/LICENSE.md renamed to vendor/github.com/Microsoft/go-winio/LICENSE

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/README.md

Lines changed: 89 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/SECURITY.md

Lines changed: 41 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)