forked from algorand/go-algorand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal_defaults.go
108 lines (105 loc) · 5.03 KB
/
local_defaults.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Copyright (C) 2019-2021 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand. If not, see <https://www.gnu.org/licenses/>.
// This file was auto generated by ./config/defaultsGenerator/defaultsGenerator.go, and SHOULD NOT BE MODIFIED in any way
// If you want to make changes to this file, make the corresponding changes to Local in config.go and run "go generate".
package config
var defaultLocal = Local{
Version: 16,
AccountsRebuildSynchronousMode: 1,
AnnounceParticipationKey: true,
Archival: false,
BaseLoggerDebugLevel: 4,
BlockServiceCustomFallbackEndpoints: "",
BroadcastConnectionsLimit: -1,
CadaverSizeTarget: 1073741824,
CatchpointFileHistoryLength: 365,
CatchpointInterval: 10000,
CatchpointTracking: 0,
CatchupBlockDownloadRetryAttempts: 1000,
CatchupFailurePeerRefreshRate: 10,
CatchupGossipBlockFetchTimeoutSec: 4,
CatchupHTTPBlockFetchTimeoutSec: 4,
CatchupLedgerDownloadRetryAttempts: 50,
CatchupParallelBlocks: 16,
ConnectionsRateLimitingCount: 60,
ConnectionsRateLimitingWindowSeconds: 1,
DNSBootstrapID: "<network>.algorand.network",
DNSSecurityFlags: 1,
DeadlockDetection: 0,
DisableLocalhostConnectionRateLimit: true,
DisableOutgoingConnectionThrottling: false,
EnableAgreementReporting: false,
EnableAgreementTimeMetrics: false,
EnableAssembleStats: false,
EnableBlockService: false,
EnableBlockServiceFallbackToArchiver: true,
EnableCatchupFromArchiveServers: false,
EnableDeveloperAPI: false,
EnableGossipBlockService: true,
EnableIncomingMessageFilter: false,
EnableLedgerService: false,
EnableMetricReporting: false,
EnableOutgoingNetworkMessageFiltering: true,
EnablePingHandler: true,
EnableProcessBlockStats: false,
EnableProfiler: false,
EnableRequestLogger: false,
EnableTopAccountsReporting: false,
EndpointAddress: "127.0.0.1:0",
FallbackDNSResolverAddress: "",
ForceRelayMessages: false,
GossipFanout: 4,
IncomingConnectionsLimit: 10000,
IncomingMessageFilterBucketCount: 5,
IncomingMessageFilterBucketSize: 512,
IsIndexerActive: false,
LedgerSynchronousMode: 2,
LogArchiveMaxAge: "",
LogArchiveName: "node.archive.log",
LogSizeLimit: 1073741824,
MaxCatchpointDownloadDuration: 7200000000000,
MaxConnectionsPerIP: 30,
MinCatchpointFileDownloadBytesPerSecond: 20480,
NetAddress: "",
NetworkMessageTraceServer: "",
NetworkProtocolVersion: "",
NodeExporterListenAddress: ":9100",
NodeExporterPath: "./node_exporter",
OptimizeAccountsDatabaseOnStartup: false,
OutgoingMessageFilterBucketCount: 3,
OutgoingMessageFilterBucketSize: 128,
PeerConnectionsUpdateInterval: 3600,
PeerPingPeriodSeconds: 0,
PriorityPeers: map[string]bool{},
PublicAddress: "",
ReconnectTime: 60000000000,
ReservedFDs: 256,
RestReadTimeoutSeconds: 15,
RestWriteTimeoutSeconds: 120,
RunHosted: false,
SuggestedFeeBlockHistory: 3,
SuggestedFeeSlidingWindowSize: 50,
TLSCertFile: "",
TLSKeyFile: "",
TelemetryToLog: true,
TxPoolExponentialIncreaseFactor: 2,
TxPoolSize: 15000,
TxSyncIntervalSeconds: 60,
TxSyncServeResponseSize: 1000000,
TxSyncTimeoutSeconds: 30,
UseXForwardedForAddressField: "",
VerifiedTranscationsCacheSize: 30000,
}