From da1346bdaa1e22463cea244d96dbefa36e959747 Mon Sep 17 00:00:00 2001 From: jangko Date: Fri, 2 Jul 2021 16:36:19 +0700 Subject: [PATCH] hive: fixes missing baseFeePerGas field in mapper.jq this is the last bugfix needed to run hive/ethereum/consensus simulator and pass all London test cases. --- hive_integration/nimbus/mapper.jq | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hive_integration/nimbus/mapper.jq b/hive_integration/nimbus/mapper.jq index e424acee6..fed3f4c49 100644 --- a/hive_integration/nimbus/mapper.jq +++ b/hive_integration/nimbus/mapper.jq @@ -48,7 +48,8 @@ def to_bool: "nonce" : .nonce, "parentHash" : .parentHash, "timestamp" : .timestamp, - "alloc" : .alloc + "alloc" : .alloc, + "baseFeePerGas": .baseFeePerGas }|remove_empty, "config": { "chainId": env.HIVE_CHAIN_ID|to_int,