Skip to content

Commit ae80657

Browse files
committed
add batch limit
1 parent 2136ad0 commit ae80657

File tree

5 files changed

+67
-28
lines changed

5 files changed

+67
-28
lines changed

go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ require (
99
github.com/btcsuite/btcd/btcutil v1.1.3
1010
github.com/cosmos/cosmos-sdk v0.46.13-0.20230524145004-5b02d46853ba
1111
github.com/cosmos/go-bip39 v1.0.0
12+
github.com/cosmos/gogoproto v1.4.10
1213
github.com/cosmos/ibc-go/v5 v5.0.0-rc0
1314
github.com/davecgh/go-spew v1.1.1
1415
github.com/ethereum/go-ethereum v1.10.19
@@ -37,7 +38,7 @@ require (
3738
golang.org/x/net v0.9.0
3839
golang.org/x/text v0.9.0
3940
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4
40-
google.golang.org/grpc v1.54.0
41+
google.golang.org/grpc v1.55.0
4142
google.golang.org/protobuf v1.30.0
4243
sigs.k8s.io/yaml v1.3.0
4344
)
@@ -104,7 +105,7 @@ require (
104105
github.com/go-stack/stack v1.8.0 // indirect
105106
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
106107
github.com/gogo/gateway v1.1.0 // indirect
107-
github.com/golang/glog v1.0.0 // indirect
108+
github.com/golang/glog v1.1.0 // indirect
108109
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
109110
github.com/golang/snappy v0.0.4 // indirect
110111
github.com/google/btree v1.1.2 // indirect
@@ -184,7 +185,7 @@ require (
184185
go.opencensus.io v0.24.0 // indirect
185186
golang.org/x/crypto v0.7.0 // indirect
186187
golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0 // indirect
187-
golang.org/x/oauth2 v0.5.0 // indirect
188+
golang.org/x/oauth2 v0.6.0 // indirect
188189
golang.org/x/sync v0.1.0 // indirect
189190
golang.org/x/sys v0.7.0 // indirect
190191
golang.org/x/term v0.7.0 // indirect
@@ -202,6 +203,8 @@ replace (
202203
// use cosmos keyring
203204
github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76
204205
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.46.13-0.20230524145004-5b02d46853ba
206+
207+
github.com/ethereum/go-ethereum => github.com/mmsqe/go-ethereum v1.10.19-0.20230613151227-e60b73fb1c29
205208
// Fix upstream GHSA-h395-qcrw-5vmq and GHSA-3vp4-m3rf-835h vulnerabilities.
206209
// TODO Remove it: https://github.com/cosmos/cosmos-sdk/issues/10409
207210
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.0

0 commit comments

Comments
 (0)