mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-01 13:52:54 +00:00
crypto/kzg4844: use reflect.TypeFor (#32319)
This commit is contained in:
parent
f49f3ec780
commit
dfde155541
1 changed files with 3 additions and 3 deletions
|
|
@ -31,9 +31,9 @@ import (
|
||||||
var content embed.FS
|
var content embed.FS
|
||||||
|
|
||||||
var (
|
var (
|
||||||
blobT = reflect.TypeOf(Blob{})
|
blobT = reflect.TypeFor[Blob]()
|
||||||
commitmentT = reflect.TypeOf(Commitment{})
|
commitmentT = reflect.TypeFor[Commitment]()
|
||||||
proofT = reflect.TypeOf(Proof{})
|
proofT = reflect.TypeFor[Proof]()
|
||||||
|
|
||||||
CellProofsPerBlob = 128
|
CellProofsPerBlob = 128
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue