From 6b4a46dfd9b4133706b94c537c7568ce798902f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Thu, 16 Oct 2014 22:18:39 +0200 Subject: [PATCH] Remove unused stuff --- libevm/FeeStructure.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libevm/FeeStructure.h b/libevm/FeeStructure.h index 8c1519e86..2aca43799 100644 --- a/libevm/FeeStructure.h +++ b/libevm/FeeStructure.h @@ -27,13 +27,6 @@ namespace dev namespace eth { -enum class Instruction: uint8_t; - -struct FeeStructure -{ - static uint32_t getInstructionFee(Instruction _inst); -}; - static uint32_t const c_stepGas = 1; ///< Once per operation, except for SSTORE, SLOAD, BALANCE, SHA3, CREATE, CALL. static uint32_t const c_balanceGas = 20; ///< Once per BALANCE operation. static uint32_t const c_sha3Gas = 20; ///< Once per SHA3 operation.