mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-29 18:53:32 +00:00
Merge branch 'unstable' into gloas-envelope-processing-merge-unstable
This commit is contained in:
@@ -483,8 +483,9 @@ impl BlockId {
|
||||
},
|
||||
)
|
||||
} else {
|
||||
Err(warp_utils::reject::custom_server_error(format!(
|
||||
"Insufficient data columns to reconstruct blobs: required {num_required_columns}, but only {num_found_column_keys} were found."
|
||||
Err(warp_utils::reject::custom_bad_request(format!(
|
||||
"Insufficient data columns to reconstruct blobs: required {num_required_columns}, but only {num_found_column_keys} were found. \
|
||||
You may need to run the beacon node with --supernode or --semi-supernode."
|
||||
)))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1970,8 +1970,8 @@ impl ApiTester {
|
||||
.await
|
||||
{
|
||||
Ok(result) => panic!("Full node are unable to return blobs post-Fulu: {result:?}"),
|
||||
// Post-Fulu, full nodes don't store blobs and return error 500
|
||||
Err(e) => assert_eq!(e.status().unwrap(), 500),
|
||||
// Post-Fulu, full nodes don't store blobs and return error 400 (Bad Request)
|
||||
Err(e) => assert_eq!(e.status().unwrap(), 400),
|
||||
};
|
||||
|
||||
self
|
||||
|
||||
Reference in New Issue
Block a user