Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyth-agent"
version = "1.3.0"
version = "1.3.1"
edition = "2021"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion src/agent/store/global.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ impl Store {
// Sanity-check that we are updating with more recent data
if let Some(existing_price) = self.account_data.price_accounts.get(account_key) {
if existing_price.timestamp > account.timestamp {
warn!(self.logger, "Global store: denied stale update of an existing newer price";
info!(self.logger, "Global store: denied stale update of an existing newer price";
"price_key" => account_key.to_string(),
"existing_timestamp" => existing_price.timestamp,
"new_timestamp" => account.timestamp,
Expand Down