Skip to content

Commit 60b79b9

Browse files
committed
Rename variables
1 parent dc40c0a commit 60b79b9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

crates/batcher/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -627,10 +627,10 @@ impl Batcher {
627627
}
628628

629629
let cached_user_nonce = {
630-
let user_state = self.user_states.get(&address);
631-
match user_state {
632-
Some(user_state) => {
633-
let user_state_guard = user_state.lock().await;
630+
let user_state_ref = self.user_states.get(&address);
631+
match user_state_ref {
632+
Some(user_state_ref) => {
633+
let user_state_guard = user_state_ref.lock().await;
634634
Some(user_state_guard.nonce)
635635
}
636636
None => None,

0 commit comments

Comments
 (0)