Skip to content

Commit

Permalink
Merge pull request #3884 from etan-status/bf-emptytx
Browse files Browse the repository at this point in the history
Avoid generating empty transactions in tests
  • Loading branch information
jtraglia authored Oct 22, 2024
2 parents 41882a7 + 34510e3 commit d022a7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/pyspec/eth2spec/test/helpers/execution_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def compute_trie_root_from_indexed_data(data):
t = HexaryTrie(db={})
for i, obj in enumerate(data):
k = encode(i, big_endian_int)
t.set(k, obj)
t.set(k, obj) # Implicitly skipped if `obj == b''` (invalid RLP)
return t.root_hash


Expand Down Expand Up @@ -353,4 +353,4 @@ def build_state_with_execution_payload_header(spec, state, execution_payload_hea


def get_random_tx(rng):
return get_random_bytes_list(rng, rng.randint(0, 1000))
return get_random_bytes_list(rng, rng.randint(1, 1000))

0 comments on commit d022a7f

Please sign in to comment.