Skip to content

Commit

Permalink
Don't ignore config for finality sync.
Browse files Browse the repository at this point in the history
  • Loading branch information
luka-ethernal committed Feb 21, 2024
1 parent 28fab22 commit a8b98b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ impl RuntimeConfig {
if let Some(port) = opts.port {
self.port = port;
}
self.sync_finality_enable = opts.finality_sync_enable;
self.sync_finality_enable |= opts.finality_sync_enable;
self.app_id = opts.app_id.or(self.app_id);

Ok(())
Expand Down

0 comments on commit a8b98b5

Please sign in to comment.