From dea9ec203b25ec24a336351ff0b0180bb66b22d3 Mon Sep 17 00:00:00 2001 From: debris Date: Mon, 11 Jan 2016 03:29:13 +0100 Subject: [PATCH] removed unused stuff --- src/evm/executive.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/evm/executive.rs b/src/evm/executive.rs index bd8d7914f..c7dbd031a 100644 --- a/src/evm/executive.rs +++ b/src/evm/executive.rs @@ -278,11 +278,6 @@ impl<'a> Executive<'a> { } } -pub enum ExtMode { - Call, - Create -} - /// Policy for handling output data on `RETURN` opcode. pub enum OutputPolicy<'a> { /// Return reference to fixed sized output. @@ -411,7 +406,6 @@ impl<'a> Ext for Externalities<'a> { } if gas_cost > gas { - // TODO: maybe gas should always be updated? return None; }