diff --git a/ethcore/src/types/transaction.rs b/ethcore/src/types/transaction.rs index a8e1c66e4..ebb82c528 100644 --- a/ethcore/src/types/transaction.rs +++ b/ethcore/src/types/transaction.rs @@ -91,7 +91,7 @@ impl Transaction { impl From for SignedTransaction { fn from(t: ethjson::state::Transaction) -> Self { - let to: Option<_> = t.to.into(); + let to: Option = t.to.into(); Transaction { nonce: t.nonce.into(), gas_price: t.gas_price.into(), @@ -108,7 +108,7 @@ impl From for SignedTransaction { impl From for SignedTransaction { fn from(t: ethjson::transaction::Transaction) -> Self { - let to: Option<_> = t.to.into(); + let to: Option = t.to.into(); SignedTransaction { unsigned: Transaction { nonce: t.nonce.into(),