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.
This commit is contained in:
jangko 2021-07-02 16:36:19 +07:00
parent 65ea8a12a9
commit da1346bdaa
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 2 additions and 1 deletions

View File

@ -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,