Skip to content

Commit

Permalink
fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Dec 14, 2024
1 parent 3fa5274 commit 34c48d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pallas-utxorpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ impl<C: LedgerContext> Mapper<C> {
payload: self.map_plutus_datum(x.data()).into(),
index: x.index().into(),
ex_units: Some(u5c::ExUnits {
steps: x.ex_units().steps as u64,
memory: x.ex_units().mem as u64,
steps: x.ex_units().steps,
memory: x.ex_units().mem,
}),
original_cbor: x.encode().into(),
}
Expand Down

0 comments on commit 34c48d5

Please sign in to comment.