File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,10 @@ impl Store {
236
236
// Sanity-check that we are updating with more recent data
237
237
if let Some ( existing_price) = self . account_data . price_accounts . get ( account_key) {
238
238
if existing_price. timestamp > account. timestamp {
239
- info ! ( self . logger, "Global store: denied stale update of an existing newer price" ;
239
+ // This message is not an error. It is common
240
+ // for primary and secondary network to have
241
+ // slight difference in their timestamps.
242
+ debug ! ( self . logger, "Global store: ignoring stale update of an existing newer price" ;
240
243
"price_key" => account_key. to_string( ) ,
241
244
"existing_timestamp" => existing_price. timestamp,
242
245
"new_timestamp" => account. timestamp,
You can’t perform that action at this time.
0 commit comments