otterscan/cmd/otter/cli/httpcfg/http_cfg.go

20 lines
298 B
Go
Raw Normal View History

2022-10-25 10:20:17 +00:00
package httpcfg
import (
"github.com/ledgerwatch/erigon/cmd/rpcdaemon/cli/httpcfg"
)
type HttpCfg struct {
httpcfg.HttpCfg
DisableRpcDaemon bool
OtsServerDisable bool
2022-10-26 03:26:11 +00:00
OtsApiPath string
OtsStaticDir string
OtsAssetUrl string
OtsRpcDaemonUrl string
OtsBeaconApiUrl string
2022-10-25 10:20:17 +00:00
}