Skip to content

Commit

Permalink
rpc_service: Rename variable for consistency with the rest of the cod…
Browse files Browse the repository at this point in the history
…e base (solana-labs#30694)

Rename variable for consistency with the rest of the code base
  • Loading branch information
mvines authored Mar 13, 2023
1 parent 6e5615e commit a791e1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rpc/src/rpc_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ impl JsonRpcService {
max_slots: Arc<MaxSlots>,
leader_schedule_cache: Arc<LeaderScheduleCache>,
connection_cache: Arc<ConnectionCache>,
current_transaction_status_slot: Arc<AtomicU64>,
max_complete_transaction_status_slot: Arc<AtomicU64>,
prioritization_fee_cache: Arc<PrioritizationFeeCache>,
) -> Result<Self, String> {
info!("rpc bound to {:?}", rpc_addr);
Expand Down Expand Up @@ -428,7 +428,7 @@ impl JsonRpcService {
bigtable_ledger_storage.clone(),
blockstore.clone(),
block_commitment_cache.clone(),
current_transaction_status_slot.clone(),
max_complete_transaction_status_slot.clone(),
ConfirmedBlockUploadConfig::default(),
exit_bigtable_ledger_upload_service.clone(),
)))
Expand Down Expand Up @@ -469,7 +469,7 @@ impl JsonRpcService {
largest_accounts_cache,
max_slots,
leader_schedule_cache,
current_transaction_status_slot,
max_complete_transaction_status_slot,
prioritization_fee_cache,
);

Expand Down

0 comments on commit a791e1b

Please sign in to comment.