mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-06 10:11:44 +00:00
Try fixing tests
This commit is contained in:
@@ -672,7 +672,7 @@ impl<E: EthSpec> ExecutionBlockGenerator<E> {
|
||||
// get random number between 0 and Max Blobs
|
||||
let mut rng = self.rng.lock();
|
||||
// TODO(pawan): thread the chainspec value here somehow
|
||||
let num_blobs = rng.gen::<usize>() % 6;
|
||||
let num_blobs = rng.gen::<usize>() % (6 + 1);
|
||||
let (bundle, transactions) = generate_blobs(num_blobs)?;
|
||||
for tx in Vec::from(transactions) {
|
||||
execution_payload
|
||||
|
||||
Reference in New Issue
Block a user