diff --git a/config/init.go b/config/init.go index aa129d97e12..f31edd42b33 100644 --- a/config/init.go +++ b/config/init.go @@ -72,6 +72,7 @@ func Init(out io.Writer, nBitsForKeypair int) (*Config, error) { }, Reprovider: Reprovider{ Interval: "12h", + Strategy: "all", }, } diff --git a/config/reprovider.go b/config/reprovider.go index 53cf293ab61..fa029c2fc21 100644 --- a/config/reprovider.go +++ b/config/reprovider.go @@ -2,4 +2,5 @@ package config type Reprovider struct { Interval string // Time period to reprovide locally stored objects to the network + Strategy string // Which keys to announce }