mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-10 03:29:42 +00:00
Implement KZG EF Tests (#4274)
This commit is contained in:
@@ -563,6 +563,36 @@ fn genesis_validity() {
|
||||
// Note: there are no genesis validity tests for mainnet
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn kzg_blob_to_kzg_commitment() {
|
||||
KZGBlobToKZGCommitmentHandler::<MainnetEthSpec>::default().run();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn kzg_compute_blob_kzg_proof() {
|
||||
KZGComputeBlobKZGProofHandler::<MainnetEthSpec>::default().run();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn kzg_compute_kzg_proof() {
|
||||
KZGComputeKZGProofHandler::<MainnetEthSpec>::default().run();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn kzg_verify_blob_kzg_proof() {
|
||||
KZGVerifyBlobKZGProofHandler::<MainnetEthSpec>::default().run();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn kzg_verify_blob_kzg_proof_batch() {
|
||||
KZGVerifyBlobKZGProofBatchHandler::<MainnetEthSpec>::default().run();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn kzg_verify_kzg_proof() {
|
||||
KZGVerifyKZGProofHandler::<MainnetEthSpec>::default().run();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn merkle_proof_validity() {
|
||||
MerkleProofValidityHandler::<MainnetEthSpec>::default().run();
|
||||
|
||||
Reference in New Issue
Block a user