lotus/build/parameters.go

20 lines
247 B
Go
Raw Normal View History

package build
2021-05-28 06:52:19 +00:00
import (
_ "embed"
)
//go:embed proof-params/parameters.json
var params []byte
//go:embed proof-params/srs-inner-product.json
var srs []byte
func ParametersJSON() []byte {
2021-05-28 06:52:19 +00:00
return params
2020-01-30 22:50:24 +00:00
}
2021-03-10 15:16:44 +00:00
func SrsJSON() []byte {
return srs
2021-03-10 15:16:44 +00:00
}