Skip to content

Commit cfee930

Browse files
committed
fix: fix go mod to reference crate-crypto/go-eth-kzg
1 parent fee66bf commit cfee930

File tree

4 files changed

+4
-86
lines changed

4 files changed

+4
-86
lines changed

crypto/kzg4844/kzg4844_gokzg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ func gokzgRecoverBlobs(cells []Cell, cellIndices []uint64) ([]Blob, error) {
222222
kzgcells = append(kzgcells, &gc)
223223
}
224224

225-
extCells, err := context.RecoverCells(cellIndices, kzgcells)
225+
extCells, err := context.RecoverCells(cellIndices, kzgcells, 2)
226226
if err != nil {
227227
return []Blob{}, err
228228
}

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/cloudflare/cloudflare-go v0.114.0
1515
github.com/cockroachdb/pebble v1.1.5
1616
github.com/consensys/gnark-crypto v0.18.0
17-
github.com/crate-crypto/go-eth-kzg v1.3.0
17+
github.com/crate-crypto/go-eth-kzg v1.3.1-0.20250915203452-9a5758b0a45d
1818
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a
1919
github.com/davecgh/go-spew v1.1.1
2020
github.com/dchest/siphash v1.2.3
@@ -152,5 +152,3 @@ tool (
152152
golang.org/x/tools/cmd/stringer
153153
google.golang.org/protobuf/cmd/protoc-gen-go
154154
)
155-
156-
replace github.com/crate-crypto/go-eth-kzg => github.com/healthykim/go-eth-kzg v0.0.0-20250909085852-cd8001ccdc13

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ github.com/consensys/gnark-crypto v0.18.0 h1:vIye/FqI50VeAr0B3dx+YjeIvmc3LWz4yEf
7878
github.com/consensys/gnark-crypto v0.18.0/go.mod h1:L3mXGFTe1ZN+RSJ+CLjUt9x7PNdx8ubaYfDROyp2Z8c=
7979
github.com/cpuguy83/go-md2man/v2 v2.0.5 h1:ZtcqGrnekaHpVLArFSe4HK5DoKx1T0rq2DwVB0alcyc=
8080
github.com/cpuguy83/go-md2man/v2 v2.0.5/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
81+
github.com/crate-crypto/go-eth-kzg v1.3.1-0.20250915203452-9a5758b0a45d h1:OnwyGw+e6xkcjqJCpyQhIdlBoTK9vtMLdzYlxVLuo+I=
82+
github.com/crate-crypto/go-eth-kzg v1.3.1-0.20250915203452-9a5758b0a45d/go.mod h1:J9/u5sWfznSObptgfa92Jq8rTswn6ahQWEuiLHOjCUI=
8183
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a h1:W8mUrRp6NOVl3J+MYp5kPMoUZPp7aOYHtaua31lwRHg=
8284
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a/go.mod h1:sTwzHBvIzm2RfVCGNEBZgRyjwK40bVoun3ZnGOCafNM=
8385
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
@@ -186,8 +188,6 @@ github.com/graph-gophers/graphql-go v1.3.0 h1:Eb9x/q6MFpCLz7jBCiP/WTxjSDrYLR1QY4
186188
github.com/graph-gophers/graphql-go v1.3.0/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc=
187189
github.com/hashicorp/go-bexpr v0.1.10 h1:9kuI5PFotCboP3dkDYFr/wi0gg0QVbSNz5oFRpxn4uE=
188190
github.com/hashicorp/go-bexpr v0.1.10/go.mod h1:oxlubA2vC/gFVfX1A6JGp7ls7uCDlfJn732ehYYg+g0=
189-
github.com/healthykim/go-eth-kzg v0.0.0-20250909085852-cd8001ccdc13 h1:CV+Nx9OzYo3TdkbEJCZfMub02d/EE2MFyzizIDXDz38=
190-
github.com/healthykim/go-eth-kzg v0.0.0-20250909085852-cd8001ccdc13/go.mod h1:J9/u5sWfznSObptgfa92Jq8rTswn6ahQWEuiLHOjCUI=
191191
github.com/holiman/billy v0.0.0-20250707135307-f2f9b9aae7db h1:IZUYC/xb3giYwBLMnr8d0TGTzPKFGNTCGgGLoyeX330=
192192
github.com/holiman/billy v0.0.0-20250707135307-f2f9b9aae7db/go.mod h1:xTEYN9KCHxuYHs+NmrmzFcnvHMzLLNiGFafCb1n3Mfg=
193193
github.com/holiman/bloomfilter/v2 v2.0.3 h1:73e0e/V0tCydx14a0SCYS/EWCxgwLZ18CZcZKVu0fao=

go.work.sum

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)