Fix build

This commit is contained in:
Jimmy Chen
2025-12-05 14:35:53 +11:00
parent 22060ca17b
commit f4b184b378
2 changed files with 2 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ impl<E: EthSpec> IndexedPayloadAttestation<E> {
#[cfg(test)]
mod tests {
use super::*;
use crate::MainnetEthSpec;
ssz_and_tree_hash_tests!(IndexedPayloadAttestation<MainnetEthSpec>);
}

View File

@@ -24,6 +24,7 @@ pub struct PayloadAttestation<E: EthSpec> {
#[cfg(test)]
mod payload_attestation_tests {
use super::*;
use crate::MinimalEthSpec;
ssz_and_tree_hash_tests!(PayloadAttestation<MinimalEthSpec>);
}