From aede1619c898945d2642e0672dabdcfd7f170b91 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Wed, 8 Jul 2015 08:30:19 -0700 Subject: [PATCH] Reversion of hardfork. --- libethereum/State.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethereum/State.cpp b/libethereum/State.cpp index bc87be4ab..10d637509 100644 --- a/libethereum/State.cpp +++ b/libethereum/State.cpp @@ -1212,7 +1212,7 @@ ExecutionResult State::execute(LastHashes const& _lh, Transaction const& _t, Per uncommitToMine(); // OK - transaction looks valid - execute. - u256 startGasUsed = e.gasUsed(); + u256 startGasUsed = gasUsed(); #if ETH_PARANOIA ctrace << "Executing" << e.t() << "on" << h; ctrace << toHex(e.t().rlp());