mirror of
https://github.com/filecoin-project/lotus.git
synced 2025-08-23 16:55:22 +08:00

* proofparams alternate * createminer * const factored from /build and types updated to use it * buildconstants for more places * deprecate msg * itest cleanup * alerting interface * house cleaning * rm policy and drand from buildconstants * clean up curio further * aussie waffle * pr fixes * fix lints * little fixes * oops this got updated * unbreak test builds * test fixes * comments - cleanups * itests fix alerting * rm obsolete alertinginterface * spelling oops * changelog * tests need buildconstants port * Fully migrate BlockGasTarget * ulimit should not depend on build * complete the simplest deprecations * bringing back versions
20 lines
227 B
Go
20 lines
227 B
Go
package proofparams
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed parameters.json
|
|
var params []byte
|
|
|
|
//go:embed srs-inner-product.json
|
|
var srs []byte
|
|
|
|
func ParametersJSON() []byte {
|
|
return params
|
|
}
|
|
|
|
func SrsJSON() []byte {
|
|
return srs
|
|
}
|