Skip to content

Commit

Permalink
chore: rm redundant type hint (paradigmxyz#11557)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Oct 8, 2024
1 parent b67f004 commit 5e288b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/rpc/rpc/src/eth/helpers/signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use std::collections::HashMap;

use crate::EthApi;
use alloy_consensus::TxEnvelope;
use alloy_dyn_abi::TypedData;
use alloy_eips::eip2718::Decodable2718;
use alloy_network::{eip2718::Encodable2718, EthereumWallet, TransactionBuilder};
Expand Down Expand Up @@ -91,7 +90,7 @@ impl EthSigner for DevSigner {
let wallet = EthereumWallet::from(signer);

// build and sign transaction with signer
let txn_envelope: TxEnvelope =
let txn_envelope =
request.build(&wallet).await.map_err(|_| SignError::InvalidTransactionRequest)?;

// decode transaction into signed transaction type
Expand Down

0 comments on commit 5e288b2

Please sign in to comment.