mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
12 lines
434 B
Go
12 lines
434 B
Go
package common
|
|
|
|
type CodeControlFlags struct {
|
|
// AutoRequestHistoricMessages indicates whether we should automatically request
|
|
// historic messages on getting online, connecting to store node, etc.
|
|
AutoRequestHistoricMessages bool
|
|
|
|
// CuratedCommunitiesUpdateLoopEnabled indicates whether we should disable the curated communities update loop.
|
|
// Usually should be disabled in tests.
|
|
CuratedCommunitiesUpdateLoopEnabled bool
|
|
}
|