Skip to content

Commit 32483d3

Browse files
committed
Fix typo
1 parent 2e86585 commit 32483d3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

beacon_node/http_api/tests/broadcast_validation_tests.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,8 @@ pub async fn block_seen_on_gossip_with_some_blobs() {
14601460
let blobs = blobs.expect("should have some blobs");
14611461
assert!(
14621462
blobs.0.len() >= 2,
1463-
"need at least 2 blobs for partial reveal"
1463+
"need at least 2 blobs for partial reveal, got: {}",
1464+
blobs.0.len()
14641465
);
14651466

14661467
let partial_kzg_proofs = vec![*blobs.0.first().unwrap()];

consensus/types/src/runtime_var_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ use std::slice::SliceIndex;
4141
/// // Push a value to if it _does_ exceed the maximum.
4242
/// assert!(long.push(6).is_err());
4343
///
44-
/// let mut uninit = RuntimeVariableList::empty_unitialized();
44+
/// let mut uninit = RuntimeVariableList::empty_uninitialized();
4545
/// assert!(uninit.push(5).is_err());
4646
///
4747
/// // Set max_len to allow mutation.

0 commit comments

Comments
 (0)