We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6512f1e commit 52df57aCopy full SHA for 52df57a
tests/zkevm/test_worst_compute.py
@@ -938,3 +938,20 @@ def test_worst_mod(
938
post={},
939
blocks=[Block(txs=[tx])],
940
)
941
+
942
943
+@pytest.mark.valid_from("Cancun")
944
+def test_empty_block(
945
+ blockchain_test: BlockchainTestFiller,
946
+ pre: Alloc,
947
+ fork: Fork,
948
+):
949
+ """Test running an empty block as a baseline for fixed proving costs."""
950
+ env = Environment()
951
952
+ blockchain_test(
953
+ env=env,
954
+ pre=pre,
955
+ post={},
956
+ blocks=[Block(txs=[])],
957
+ )
0 commit comments