1ed62628a7
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
24 lines
476 B
Go
24 lines
476 B
Go
package build
|
|
|
|
import (
|
|
rice "github.com/GeertJohan/go.rice"
|
|
logging "github.com/ipfs/go-log/v2"
|
|
)
|
|
|
|
// moved from now-defunct build/paramfetch.go
|
|
var log = logging.Logger("build")
|
|
|
|
func MaybeGenesis() []byte {
|
|
builtinGen, err := rice.FindBox("genesis")
|
|
if err != nil {
|
|
log.Warnf("loading built-in genesis: %s", err)
|
|
return nil
|
|
}
|
|
genBytes, err := builtinGen.Bytes("devnet.car")
|
|
if err != nil {
|
|
log.Warnf("loading built-in genesis: %s", err)
|
|
}
|
|
|
|
return genBytes
|
|
}
|