From 30aa2ec204bac97e57f32a6574613c26cbc1fd90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Henry?= Date: Fri, 23 Nov 2018 17:11:21 +0100 Subject: [PATCH] Alpha: increased gas cost for origination --- src/proto_alpha/lib_protocol/src/michelson_v1_gas.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/src/michelson_v1_gas.ml b/src/proto_alpha/lib_protocol/src/michelson_v1_gas.ml index 11df04ffa..b6c1da42d 100644 --- a/src/proto_alpha/lib_protocol/src/michelson_v1_gas.ml +++ b/src/proto_alpha/lib_protocol/src/michelson_v1_gas.ml @@ -207,7 +207,7 @@ module Cost_of = struct (len *@ (log2 len *@ (alloc_cost 3 +@ step_cost 1))) let address = step_cost 1 - let contract = Gas.read_bytes_cost Z.zero +@ step_cost 100 + let contract = Gas.read_bytes_cost Z.zero +@ step_cost 10000 let transfer = step_cost 10 let create_account = step_cost 10 let create_contract = step_cost 10