Skip to content

Commit

Permalink
make naming clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
grooviegermanikus committed Aug 12, 2024
1 parent 3894bcf commit ca8cf9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chaindata_standalone/src/router_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn handle_updated_account(
use solana_sdk::account::WritableAccount;
use solana_sdk::clock::Epoch;

trace!("[account_writes_channel->chain_data] .update_account for {}@_slot_{} write_version={}",
trace!("[account_write_receiver->chain_data] .update_account for {}@_slot_{} write_version={}",
account_write.pubkey, account_write.slot, account_write.write_version);
chain_data.update_account(
account_write.pubkey,
Expand All @@ -101,7 +101,7 @@ fn handle_updated_account(
},
);

trace!("[account_writes_channel->account_update_sender] send write for {}@_slot_{} write_version={}",
trace!("[account_write_receiver->account_update_sender] send write for {}@_slot_{} write_version={}",
account_write.pubkey, account_write.slot, account_write.write_version);
// ignore failing sends when there are no receivers
let _err = account_update_sender.send((account_write.pubkey, account_write.slot));
Expand Down Expand Up @@ -134,7 +134,7 @@ pub fn spawn_updater_job(
// }
res = account_updates.recv() => {
let (pubkey, slot) = res.unwrap();
trace!("-> updater.invalidate_one for {}@_slot_{}", pubkey, slot);
trace!("[account_update_sender->...]-> updater.invalidate_one for {}@_slot_{}", pubkey, slot);

// if !updater.invalidate_one(res) {
// break 'drain_loop;
Expand Down

0 comments on commit ca8cf9a

Please sign in to comment.