Skip to content

Commit d9a54b7

Browse files
committed
Rename two more local vars
1 parent cc7f96a commit d9a54b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/network_pool/indexed_pool.ml

+3-3
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ let revalidate :
776776
(currency_consumed ~constraint_constants cmd)) )
777777
currency_reserved dropped_from_nonce
778778
in
779-
let keep_queue', currency_reserved'', dropped_for_balance =
779+
let keep_queue, currency_reserved_updated, dropped_for_balance =
780780
drop_until_sufficient_balance ~constraint_constants
781781
(retained_by_nonce, currency_reserved_partially_updated)
782782
current_balance
@@ -799,7 +799,7 @@ let revalidate :
799799
~f:remove_all_by_fee_and_hash_and_expiration_exn
800800
in
801801
let t''' =
802-
match F_sequence.uncons keep_queue' with
802+
match F_sequence.uncons keep_queue with
803803
| None ->
804804
{ t'' with
805805
all_by_sender = Map.remove t''.all_by_sender sender
@@ -812,7 +812,7 @@ let revalidate :
812812
{ t'' with
813813
all_by_sender =
814814
Map.set t''.all_by_sender ~key:sender
815-
~data:(keep_queue', currency_reserved'')
815+
~data:(keep_queue, currency_reserved_updated)
816816
; applicable_by_fee =
817817
Map_set.insert
818818
( module Transaction_hash

0 commit comments

Comments
 (0)