File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -367,6 +367,14 @@ impl Cache {
367367 let cache_clone = Arc :: clone ( & self . claim_status_cache ) ;
368368 tokio:: spawn ( async move {
369369 while let Some ( ( pubkey, data) ) = update_rx. recv ( ) . await {
370+ if data. data . claimant . to_string ( ) == "FJWKx31QCW7yCwsVBihqx9QH5FzexbkpHgaaGrj8cbi5" {
371+ if data. data . unlocked_amount == 5000000000 {
372+ println ! ( "skipping update for claimant: {} with amount: {}" , data. data. claimant. to_string( ) , data. data. unlocked_amount) ;
373+ } else {
374+ println ! ( "skipping update for claimant: {} with amount: {}" , data. data. claimant. to_string( ) , data. data. unlocked_amount) ;
375+ continue ;
376+ }
377+ }
370378 match cache_clone. entry ( data. data . claimant . to_string ( ) ) {
371379 Entry :: Occupied ( mut entry) => {
372380 if entry. get ( ) . data == data. data {
You can’t perform that action at this time.
0 commit comments