Skip to content

Commit

Permalink
chore: fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Nov 19, 2023
1 parent 1bf5a42 commit 1d853c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/dolos/eval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ pub fn run(config: &super::Config, args: &Args) -> miette::Result<()> {
let resolved = resolve_inputs(&tx, &ledger)?;

for (input, output) in resolved.iter() {
let key = MultiEraInput::from_byron(&input);
let key = MultiEraInput::from_byron(input);

let value = MultiEraOutput::decode(Era::Byron, &output)
let value = MultiEraOutput::decode(Era::Byron, output)
.into_diagnostic()
.context("decoding utxo cbor")?;

Expand Down

0 comments on commit 1d853c8

Please sign in to comment.