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 6bbae6f commit b685bbfCopy full SHA for b685bbf
src/agent/solana/exporter.rs
@@ -315,7 +315,7 @@ impl Exporter {
315
// Filter out unchanged price data if the max delay wasn't reached
316
317
if let Some(last_info) = self.last_published_state.get(identifier) {
318
- if (last_info.timestamp - info.timestamp)
+ if (info.timestamp - last_info.timestamp)
319
> self.config.unchanged_publish_threshold.as_secs() as i64
320
{
321
true // max delay since last published state reached, we publish anyway
0 commit comments