Documentation ¶
Index ¶
Constants ¶
View Source
const ( Debug = true BuildVersion = "v0.17.3-BUILD_VERSION" KernelNetworkId = "74c6cdb7d51af57037faa1f5544f8331ced001df5964331911ca51385993b375" SnapshotRoundGap = uint64(3 * time.Second) SnapshotReferenceThreshold = 10 SnapshotSyncRoundThreshold = 100 SnapshotRoundSize = 200 CheckpointDuration = 10 * time.Minute CheckpointPunishmentGrade = 7 TransactionMaximumSize = 1024 * 1024 * 4 WithdrawalClaimFee = "0.0001" GossipSize = 3 KernelMinimumNodesCount = 7 KernelMintTimeBegin = 7 KernelMintTimeEnd = 9 KernelNodeAcceptTimeBegin = 13 KernelNodeAcceptTimeEnd = 19 KernelNodePledgePeriodMinimum = 12 * time.Hour KernelNodeAcceptPeriodMinimum = 12 * time.Hour KernelNodeAcceptPeriodMaximum = 7 * 24 * time.Hour )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Custom ¶ added in v0.2.18
type Custom struct { Node struct { Signer crypto.Key `toml:"-"` SignerStr string `toml:"signer-key"` ConsensusOnly bool `toml:"consensus-only"` KernelOprationPeriod int `toml:"kernel-operation-period"` MemoryCacheSize int `toml:"memory-cache-size"` CacheTTL int `toml:"cache-ttl"` } `toml:"node"` Storage struct { ValueLogGC bool `toml:"value-log-gc"` MaxCompactionLevels int `toml:"max-compaction-levels"` } `toml:"storage"` Network struct { Listener string `toml:"listener"` GossipNeighbors bool `toml:"gossip-neighbors"` Metric bool `toml:"metric"` Peers []string `toml:"peers"` } `toml:"network"` RPC struct { Runtime bool `toml:"runtime"` } `toml:"rpc"` Dev struct { Profile bool `toml:"profile"` } `toml:"dev"` }
func Initialize ¶ added in v0.2.18
Click to show internal directories.
Click to hide internal directories.