Skip to content

Commit

Permalink
fix clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pgherveou committed Nov 13, 2024
1 parent 1c9141f commit 8e9310f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions substrate/frame/revive/rpc/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@ impl ClientInner {
let event = event_details.as_event::<ContractEmitted>().ok()??;

Some(Log {
address: Some(event.contract),
topics: Some(event.topics),
address: event.contract,
topics: event.topics,
data: Some(event.data.into()),
block_number: Some(block_number),
transaction_hash,
Expand All @@ -340,7 +340,7 @@ impl ClientInner {
gas_used.into(),
success,
transaction_hash,
transaction_index: transaction_index.into(),
transaction_index.into(),
tx.r#type.bytes()

Check failure on line 344 in substrate/frame/revive/rpc/src/client.rs

View workflow job for this annotation

GitHub Actions / cargo-check-all-crate-macos

no field `r#type` on type `pallet_revive::evm::TransactionLegacySigned`
);

Expand Down

0 comments on commit 8e9310f

Please sign in to comment.