From c0952ba44b07a4abb1954a117e3023f706896368 Mon Sep 17 00:00:00 2001 From: Reyk Floeter Date: Sun, 18 Nov 2018 00:51:35 +0100 Subject: [PATCH] Unbreak build on rust -stable (#9934) --- rpc/src/v1/helpers/light_fetch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/src/v1/helpers/light_fetch.rs b/rpc/src/v1/helpers/light_fetch.rs index b77d3b9cc..cf854c77b 100644 --- a/rpc/src/v1/helpers/light_fetch.rs +++ b/rpc/src/v1/helpers/light_fetch.rs @@ -625,7 +625,7 @@ fn execute_read_only_tx(gas_known: bool, params: ExecuteParams) -> impl Future { // `OutOfGas` exception, try double the gas - if let Some(vm::Error::OutOfGas) = executed.exception { + if let Some(::vm::Error::OutOfGas) = executed.exception { // block gas limit already tried, regard as an error and don't retry if params.tx.gas >= params.hdr.gas_limit() { trace!(target: "light_fetch", "OutOutGas exception received, gas increase: failed");