Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
make raiko host endpoint required
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerLamTd committed May 6, 2024
1 parent da5ad24 commit 3093994
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cmd/flags/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ var (
Category: proverCategory,
EnvVars: []string{"PROVER_CAPACITY"},
}
)

// Optional flags used by prover.
var (
RaikoHostEndpoint = &cli.StringFlag{
Name: "raiko.host",
Usage: "RPC endpoint of a Raiko host service",
Required: true,
Category: proverCategory,
EnvVars: []string{"RAIKO_HOST"},
}
)

// Optional flags used by prover.
var (
RaikoL1Endpoint = &cli.StringFlag{
Name: "raiko.l1",
Usage: "L1 RPC endpoint which will be sent to the Raiko service",
Expand Down

0 comments on commit 3093994

Please sign in to comment.