Skip to content

Commit

Permalink
style: fmt and clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
biryukovmaxim committed Jun 16, 2024
1 parent 2e61b44 commit f7a3f77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/txscript/src/data_stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ mod tests {
"number: {}; serialized: {}; be: {}, le: {}",
test.num,
hex::encode(serialized),
hex::encode(&test.num.to_be_bytes()),
hex::encode(&test.num.to_le_bytes()),
hex::encode(test.num.to_be_bytes()),
hex::encode(test.num.to_le_bytes()),
)
}
}
Expand Down

0 comments on commit f7a3f77

Please sign in to comment.