1## Test missing basefee
2
3In this test, the `currentBaseFee` is missing from the env portion.
4On a live blockchain, the basefee is present in the header, and verified as part of header validation.
5
6In `evm t8n`, we don't have blocks, so it needs to be added in the `env`instead.
7
8When it's missing, an error is expected.
9
10```
11dir=./testdata/11 && ./evm t8n --state.fork=London --input.alloc=$dir/alloc.json --input.txs=$dir/txs.json --input.env=$dir/env.json --output.alloc=stdout --output.result=stdout 2>&1>/dev/null
12ERROR(3): EIP-1559 config but missing 'currentBaseFee' in env section
13```