Skip to content

Commit d02f8d0

Browse files
committed
mina-tree: appease clippy
1 parent 9ca0bd6 commit d02f8d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ledger/tests/test_transaction_logic_first_pass.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ fn test_apply_payment_success() {
154154
next_epoch_data: dummy_epoch_data(),
155155
};
156156
let result = apply_transaction_first_pass(
157-
&constraint_constants,
157+
constraint_constants,
158158
Slot::from_u32(0),
159159
&state_view,
160160
&mut ledger,
@@ -261,7 +261,7 @@ fn test_apply_payment_insufficient_balance() {
261261
next_epoch_data: dummy_epoch_data(),
262262
};
263263
let result = apply_transaction_first_pass(
264-
&constraint_constants,
264+
constraint_constants,
265265
Slot::from_u32(0),
266266
&state_view,
267267
&mut ledger,
@@ -351,7 +351,7 @@ fn test_apply_payment_invalid_nonce() {
351351
next_epoch_data: dummy_epoch_data(),
352352
};
353353
let result = apply_transaction_first_pass(
354-
&constraint_constants,
354+
constraint_constants,
355355
Slot::from_u32(0),
356356
&state_view,
357357
&mut ledger,
@@ -423,7 +423,7 @@ fn test_apply_payment_nonexistent_fee_payer() {
423423
next_epoch_data: dummy_epoch_data(),
424424
};
425425
let result = apply_transaction_first_pass(
426-
&constraint_constants,
426+
constraint_constants,
427427
Slot::from_u32(0),
428428
&state_view,
429429
&mut ledger,

0 commit comments

Comments
 (0)