-
Notifications
You must be signed in to change notification settings - Fork 202
/
constants.go
24 lines (23 loc) · 981 Bytes
/
constants.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package factory
// test constants
const (
BaseNodeConfigPath = "../../../cmd/node/config"
ConfigPath = "config.toml"
RatingsPath = "ratings.toml"
EconomicsPath = "economics.toml"
PrefsPath = "prefs.toml"
ExternalPath = "external.toml"
MainP2pPath = "p2p.toml"
FullArchiveP2pPath = "fullArchiveP2P.toml"
EpochPath = "enableEpochs.toml"
SystemSCConfigPath = "systemSmartContractsConfig.toml"
GasSchedule = "gasSchedules"
NodesSetupPath = "../testdata/nodesSetup.json"
GenesisPath = "../testdata/genesis.json"
GenesisSmartContracts = "../testdata/genesisSmartContracts.json"
ValidatorKeyPemPath = "../validatorKey.pem"
BaseVersion = "v1.1.6.1-0-gbae61225f/go1.14.2/linux-amd64"
Version = "v1.1.6.1-0-gbae61225f/go1.14.2/linux-amd64/a72b5f2eff"
RoundActivationPath = "enableRounds.toml"
P2pKeyPath = "../p2pKey.pem"
)