Skip to content

Commit fc6d220

Browse files
authored
fix unsupport type of transaction with blob tx while getting block in ethereum (#95)
* fix: fix `unsupport type of transaction` with blob tx while getting block in ethereum - Remove used code - Pump master version of ronin * chore: implement get block without transaction in `GetLatestBlock` and `GetProcessedBlock` * chore: remove unused get logs function
1 parent 81a2dac commit fc6d220

File tree

4 files changed

+45
-168
lines changed

4 files changed

+45
-168
lines changed

go.mod

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
module github.com/axieinfinity/bridge-v2
22

3-
replace github.com/ethereum/go-ethereum => github.com/axieinfinity/ronin v1.10.4-0.20230327040419-9bf4895fbd51
3+
replace github.com/ethereum/go-ethereum => github.com/axieinfinity/ronin v1.10.4-0.20240117085004-bf2f0d1787d0
44

55
go 1.20
66

77
require (
88
github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5
99
github.com/hashicorp/go-bexpr v0.1.10
1010
github.com/mattn/go-colorable v0.1.13
11-
github.com/mattn/go-isatty v0.0.17
12-
golang.org/x/crypto v0.13.0 // indirect
11+
github.com/mattn/go-isatty v0.0.18
12+
golang.org/x/crypto v0.17.0 // indirect
1313
gopkg.in/urfave/cli.v1 v1.20.0
1414
gorm.io/gorm v1.24.1
1515
)
1616

1717
require (
1818
github.com/deckarep/golang-set v1.8.0 // indirect
19-
golang.org/x/sys v0.12.0 // indirect
19+
golang.org/x/sys v0.15.0 // indirect
2020
)
2121

2222
require (
@@ -35,7 +35,7 @@ require (
3535
github.com/VictoriaMetrics/fastcache v1.12.0 // indirect
3636
github.com/axieinfinity/ronin-kms-client v0.0.0-20220805072849-960e04981b70 // indirect
3737
github.com/beorn7/perks v1.0.1 // indirect
38-
github.com/btcsuite/btcd v0.22.0-beta // indirect
38+
github.com/btcsuite/btcd v0.22.3 // indirect
3939
github.com/cespare/xxhash/v2 v2.2.0 // indirect
4040
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4141
github.com/edsrzf/mmap-go v1.1.0 // indirect
@@ -49,6 +49,7 @@ require (
4949
github.com/google/uuid v1.3.0 // indirect
5050
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
5151
github.com/hashicorp/hcl v1.0.0 // indirect
52+
github.com/herumi/bls-eth-go-binary v1.31.0 // indirect
5253
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
5354
github.com/holiman/uint256 v1.2.1 // indirect
5455
github.com/huin/goupnp v1.1.0 // indirect
@@ -81,7 +82,7 @@ require (
8182
github.com/prometheus/common v0.37.0 // indirect
8283
github.com/prometheus/procfs v0.8.0 // indirect
8384
github.com/prometheus/tsdb v0.10.0 // indirect
84-
github.com/rivo/uniseg v0.4.2 // indirect
85+
github.com/rivo/uniseg v0.4.3 // indirect
8586
github.com/rjeczalik/notify v0.9.2 // indirect
8687
github.com/sagikazarmark/locafero v0.3.0 // indirect
8788
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
@@ -93,6 +94,7 @@ require (
9394
github.com/spf13/pflag v1.0.5 // indirect
9495
github.com/status-im/keycard-go v0.2.0 // indirect
9596
github.com/subosito/gotenv v1.6.0 // indirect
97+
github.com/supranational/blst v0.3.11 // indirect
9698
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
9799
github.com/tklauser/go-sysconf v0.3.11 // indirect
98100
github.com/tklauser/numcpus v0.6.0 // indirect
@@ -101,9 +103,9 @@ require (
101103
go.uber.org/atomic v1.9.0 // indirect
102104
go.uber.org/multierr v1.9.0 // indirect
103105
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
104-
golang.org/x/net v0.15.0 // indirect
106+
golang.org/x/net v0.17.0 // indirect
105107
golang.org/x/sync v0.3.0 // indirect
106-
golang.org/x/text v0.13.0 // indirect
108+
golang.org/x/text v0.14.0 // indirect
107109
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
108110
google.golang.org/grpc v1.58.2 // indirect
109111
google.golang.org/protobuf v1.31.0 // indirect

0 commit comments

Comments
 (0)