mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
5b12f5a27d
* Integrate builder client into builder service * Do nothing if pubkey is not found Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
8 lines
111 B
Go
8 lines
111 B
Go
package builder
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
var (
|
|
ErrNotRunning = errors.New("builder is not running")
|
|
)
|