Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Alrighttt committed Nov 26, 2024
1 parent e7d94e9 commit a70ea15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm2src/coins/siacoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ impl MmCoin for SiaCoin {
Err(e) => return Err(e.into()),
};
let tx_hex = SiaTransaction(tx).tx_hex();
return Ok(RawTransactionRes { tx_hex: tx_hex.into() });
Ok(RawTransactionRes { tx_hex: tx_hex.into() })
};
Box::new(fut.boxed().compat())
}
Expand Down

0 comments on commit a70ea15

Please sign in to comment.