mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
b030771174
* first version * cli context * fix service * starting change to ccache * ristretto cache * added test * test on evict * remove evict test * test onevict * comment for exported flag * update all span maps on load * fix setup db * span cache added to help flags * start save cache on exit * save cache to db before close * comment fix * fix flags * setup db new * nishant feedback * workspace cr * lint fix * fix calls * start db * fix test * Update slasher/db/db.go Co-Authored-By: Nishant Das <nishdas93@gmail.com> * add flag * nishant feedback * export Config * fix imports * fix imports * fix imports * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * remove mod print Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Nishant Das <nish1993@hotmail.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
46 lines
1.5 KiB
Go
46 lines
1.5 KiB
Go
package flags
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var (
|
|
// CertFlag defines a flag for the node's TLS certificate.
|
|
CertFlag = cli.StringFlag{
|
|
Name: "tls-cert",
|
|
Usage: "Certificate for secure gRPC. Pass this and the tls-key flag in order to use gRPC securely.",
|
|
}
|
|
// RPCPort defines a slasher node RPC port to open.
|
|
RPCPort = cli.IntFlag{
|
|
Name: "rpc-port",
|
|
Usage: "RPC port exposed by a beacon node",
|
|
Value: 5000,
|
|
}
|
|
// KeyFlag defines a flag for the node's TLS key.
|
|
KeyFlag = cli.StringFlag{
|
|
Name: "tls-key",
|
|
Usage: "Key for secure gRPC. Pass this and the tls-cert flag in order to use gRPC securely.",
|
|
}
|
|
// BeaconCertFlag defines a flag for the beacon api certificate.
|
|
BeaconCertFlag = cli.StringFlag{
|
|
Name: "beacon-tls-cert",
|
|
Usage: "Certificate for secure beacon gRPC connection. Pass this in order to use beacon gRPC securely.",
|
|
}
|
|
// BeaconRPCProviderFlag defines a flag for the beacon host ip or address.
|
|
BeaconRPCProviderFlag = cli.StringFlag{
|
|
Name: "beacon-rpc-provider",
|
|
Usage: "Beacon node RPC provider endpoint",
|
|
Value: "localhost:4000",
|
|
}
|
|
// UseSpanCacheFlag enables the slasher to use span cache.
|
|
UseSpanCacheFlag = cli.BoolFlag{
|
|
Name: "span-map-cache",
|
|
Usage: "Enable span map cache",
|
|
}
|
|
// RebuildSpanMapsFlag iterate through all indexed attestations in db and update all validators span maps from scratch.
|
|
RebuildSpanMapsFlag = cli.BoolFlag{
|
|
Name: "rebuild-span-maps",
|
|
Usage: "Rebuild span maps from indexed attestations in db",
|
|
}
|
|
)
|