Skip to content

Commit a6913a2

Browse files
committed
Fix clippy warning
1 parent 2c042a0 commit a6913a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zebra-consensus/src/orchard_zsa/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fn process_issue_actions<'a, I: Iterator<Item = &'a IssueAction>>(
7373
let is_finalized = action.is_finalized();
7474

7575
for note in action.notes() {
76-
let amount = note.value().into();
76+
let amount = note.value();
7777

7878
// FIXME: check for issuance specific errors?
7979
match asset_records.entry(note.asset()) {

0 commit comments

Comments
 (0)