chore: ignore ef blobTx test (#4038)

This commit is contained in:
Matthias Seitz
2023-08-02 20:34:10 +02:00
committed by GitHub
parent 2e1ef4dfa5
commit 248faa4ee8

View File

@ -182,5 +182,14 @@ pub fn should_skip(path: &Path) -> bool {
return true
}
if path.file_name() == Some(OsStr::new("ValueOverflow.json")) {
return true
}
// TODO: re-enable when blobtx are supported
if path.file_name() == Some(OsStr::new("blobtxExample.json")) {
return true
}
false
}