From 5e13f007c697d4390f1ce14513a191d20d3541cf Mon Sep 17 00:00:00 2001 From: CJentzsch Date: Tue, 3 Mar 2015 11:20:39 +0100 Subject: [PATCH] update gas costs --- libethcore/Params.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libethcore/Params.cpp b/libethcore/Params.cpp index a59af5472..d986b889b 100644 --- a/libethcore/Params.cpp +++ b/libethcore/Params.cpp @@ -57,8 +57,8 @@ u256 const dev::eth::c_quadCoeffDiv = 512; u256 const dev::eth::c_createDataGas = 200; u256 const dev::eth::c_txGas = 21000; -u256 const dev::eth::c_txDataZeroGas = 37; -u256 const dev::eth::c_txDataNonZeroGas = 2; +u256 const dev::eth::c_txDataZeroGas = 4; +u256 const dev::eth::c_txDataNonZeroGas = 68; u256 const dev::eth::c_copyGas = 3;