From e54a3ead16322d6ff816187ad778166271cadb01 Mon Sep 17 00:00:00 2001 From: Yoichi Hirai Date: Mon, 16 Jan 2017 14:49:14 +0100 Subject: libevmasm: EIP150.a changes on SLOAD, CALL, CALLCODE, DELEGATECALL and SUICIDE --- libevmasm/GasMeter.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libevmasm/GasMeter.h') diff --git a/libevmasm/GasMeter.h b/libevmasm/GasMeter.h index 7c6a04ce..146f08a2 100644 --- a/libevmasm/GasMeter.h +++ b/libevmasm/GasMeter.h @@ -59,10 +59,11 @@ namespace GasCosts static unsigned const logDataGas = 8; static unsigned const logTopicGas = 375; static unsigned const createGas = 32000; - static unsigned const callGas = 40; + static unsigned const callGas = 700; static unsigned const callStipend = 2300; static unsigned const callValueTransferGas = 9000; static unsigned const callNewAccountGas = 25000; + static unsigned const selfdestructGas = 5000; static unsigned const selfdestructRefundGas = 24000; static unsigned const memoryGas = 3; static unsigned const quadCoeffDiv = 512; -- cgit