mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-24 20:47:16 +00:00
6464da7670
* save state * save state * save state * refactoring * fix * save state * save state * fmt * fix lint * restore torrents for external downloader * fix lint * download * skip debug test * debug * remote debug * small cli fixes * skip debug test * external snapshot predownloader * get rid of remote downloader * fix lint * clean makefile * fix lint * fix lint * cleanup * fix ci * fmt * remove proto from interfaces * Squashed 'interfaces/' content from commit acd02bb94 git-subtree-dir: interfaces git-subtree-split: acd02bb94c5a421aa8f8d1fd76cd8aad668e9fcb
66 lines
1.5 KiB
Go
66 lines
1.5 KiB
Go
package cli
|
|
|
|
import (
|
|
"github.com/ledgerwatch/turbo-geth/cmd/utils"
|
|
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// DefaultFlags contains all flags that are used and supported by turbo-geth binary.
|
|
var DefaultFlags = []cli.Flag{
|
|
utils.DataDirFlag,
|
|
utils.KeyStoreDirFlag,
|
|
utils.EthashDatasetDirFlag,
|
|
utils.TxPoolLocalsFlag,
|
|
utils.TxPoolNoLocalsFlag,
|
|
utils.TxPoolJournalFlag,
|
|
utils.TxPoolRejournalFlag,
|
|
utils.TxPoolPriceLimitFlag,
|
|
utils.TxPoolPriceBumpFlag,
|
|
utils.TxPoolAccountSlotsFlag,
|
|
utils.TxPoolGlobalSlotsFlag,
|
|
utils.TxPoolAccountQueueFlag,
|
|
utils.TxPoolGlobalQueueFlag,
|
|
utils.TxPoolLifetimeFlag,
|
|
utils.TxLookupLimitFlag,
|
|
StorageModeFlag,
|
|
SnapshotModeFlag,
|
|
SeedSnapshotsFlag,
|
|
ExternalSnapshotDownloaderAddrFlag,
|
|
BatchSizeFlag,
|
|
DatabaseFlag,
|
|
PrivateApiAddr,
|
|
EtlBufferSizeFlag,
|
|
LMDBMapSizeFlag,
|
|
LMDBMaxFreelistReuseFlag,
|
|
TLSFlag,
|
|
TLSCertFlag,
|
|
TLSKeyFlag,
|
|
TLSCACertFlag,
|
|
utils.ListenPortFlag,
|
|
utils.NATFlag,
|
|
utils.NoDiscoverFlag,
|
|
utils.DiscoveryV5Flag,
|
|
utils.NetrestrictFlag,
|
|
utils.NodeKeyFileFlag,
|
|
utils.NodeKeyHexFlag,
|
|
utils.DNSDiscoveryFlag,
|
|
utils.RopstenFlag,
|
|
utils.RinkebyFlag,
|
|
utils.GoerliFlag,
|
|
utils.YoloV1Flag,
|
|
utils.VMEnableDebugFlag,
|
|
utils.NetworkIdFlag,
|
|
utils.FakePoWFlag,
|
|
utils.GpoBlocksFlag,
|
|
utils.GpoPercentileFlag,
|
|
utils.EWASMInterpreterFlag,
|
|
utils.EVMInterpreterFlag,
|
|
utils.InsecureUnlockAllowedFlag,
|
|
utils.MetricsEnabledFlag,
|
|
utils.MetricsEnabledExpensiveFlag,
|
|
utils.MetricsHTTPFlag,
|
|
utils.MetricsPortFlag,
|
|
utils.IdentityFlag,
|
|
}
|