From 4e66d3ca2193b2ab31bb994d2d7bba5de08410c5 Mon Sep 17 00:00:00 2001 From: debris Date: Tue, 5 Sep 2017 15:25:06 +0200 Subject: [PATCH] fixed old import in json-tests --- ethcore/src/transaction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcore/src/transaction.rs b/ethcore/src/transaction.rs index 5971a9bdb..ce767cd0d 100644 --- a/ethcore/src/transaction.rs +++ b/ethcore/src/transaction.rs @@ -380,7 +380,7 @@ impl UnverifiedTransaction { self.recover_public()?; } if self.gas < U256::from(self.gas_required(&schedule)) { - return Err(TransactionError::InvalidGasLimit(::util::OutOfBounds{min: Some(U256::from(self.gas_required(&schedule))), max: None, found: self.gas}).into()) + return Err(TransactionError::InvalidGasLimit(::unexpected::OutOfBounds{min: Some(U256::from(self.gas_required(&schedule))), max: None, found: self.gas}).into()) } Ok(self) }