Unverified Commit 976ca074 authored by Clint.Network's avatar Clint.Network Committed by GitHub

Update FixerService.cs

Increase fixer API timer
parent b7562663
...@@ -25,7 +25,7 @@ namespace Stratis.Guru.Services ...@@ -25,7 +25,7 @@ namespace Stratis.Guru.Services
public Task StartAsync(CancellationToken cancellationToken) public Task StartAsync(CancellationToken cancellationToken)
{ {
_timer = new Timer(DoWork, null, TimeSpan.Zero, TimeSpan.FromHours(1)); _timer = new Timer(DoWork, null, TimeSpan.Zero, TimeSpan.FromDays(1));
return Task.CompletedTask; return Task.CompletedTask;
} }
...@@ -49,4 +49,4 @@ namespace Stratis.Guru.Services ...@@ -49,4 +49,4 @@ namespace Stratis.Guru.Services
_timer?.Dispose(); _timer?.Dispose();
} }
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment