fixed old import in json-tests

This commit is contained in:
debris 2017-09-05 15:25:06 +02:00
parent 14d00a7f72
commit 4e66d3ca21

View File

@ -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)
}