We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0007402 commit 06a78a1Copy full SHA for 06a78a1
mithril-signer/src/main.rs
@@ -152,6 +152,13 @@ async fn main() -> StdResult<()> {
152
.with_context(|| "configuration error: could not set `enable_metrics_server`")?
153
.set_default("allow_unparsable_block", args.allow_unparsable_block)
154
.with_context(|| "configuration error: could not set `allow_unparsable_block`")?
155
+ .set_default(
156
+ "preloading_refresh_interval_in_seconds",
157
+ args.preloading_refresh_interval_in_seconds,
158
+ )
159
+ .with_context(|| {
160
+ "configuration error: could not set `preloading_refresh_interval_in_seconds`"
161
+ })?
162
.add_source(DefaultConfiguration::default())
163
.add_source(
164
config::File::with_name(&format!(
0 commit comments