blob: 21b3aaf8a975e410654dc64b2284cc018ddd0066 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
package evm
// CommandLineConfig ...
type CommandLineConfig struct {
// Coreth APIs
SnowmanAPIEnabled bool `json:"snowman-api-enabled"`
CorethAdminAPIEnabled bool `json:"coreth-admin-api-enabled"`
NetAPIEnabled bool `json:"net-api-enabled"`
// Coreth API Gas/Price Caps
RPCGasCap uint64 `json:"rpc-gas-cap"`
RPCTxFeeCap float64 `json:"rpc-tx-fee-cap"`
// Eth APIs
EthAPIEnabled bool `json:"eth-api-enabled"`
PersonalAPIEnabled bool `json:"personal-api-enabled"`
TxPoolAPIEnabled bool `json:"tx-pool-api-enabled"`
DebugAPIEnabled bool `json:"debug-api-enabled"`
Web3APIEnabled bool `json:"web3-api-enabled"`
ParsingError error
}
// EthAPIs returns an array of strings representing the Eth APIs that should be enabled
func (c CommandLineConfig) EthAPIs() []string {
ethAPIs := make([]string, 0)
if c.EthAPIEnabled {
ethAPIs = append(ethAPIs, "eth")
}
if c.PersonalAPIEnabled {
ethAPIs = append(ethAPIs, "personal")
}
if c.TxPoolAPIEnabled {
ethAPIs = append(ethAPIs, "txpool")
}
if c.DebugAPIEnabled {
ethAPIs = append(ethAPIs, "debug")
}
return ethAPIs
}
|