diff --git a/specs/_features/eip6800/beacon-chain.md b/specs/_features/eip6800/beacon-chain.md index ab935cb870..7396bb34fc 100644 --- a/specs/_features/eip6800/beacon-chain.md +++ b/specs/_features/eip6800/beacon-chain.md @@ -130,6 +130,10 @@ class StemStateDiff(Container): stem: Stem # Valid only if list is sorted by suffixes suffix_diffs: List[SuffixStateDiff, VERKLE_WIDTH] + # Bitmap to indicate which tx accesses this stem, + # if bit #n is set, then transaction #n accesses + # this stem. Used to execute txs concurrently. + tx_accesses: Bitlist[MAX_TRANSACTIONS_PER_PAYLOAD] ``` #### `IPAProof`