Skip to content

Commit 001ed14

Browse files
committed
chore: add Deflattened CellsAndProofs to java build.rs
1 parent abcbfa5 commit 001ed14

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

bindings/java/rust_code/build.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ use std::{env, path::PathBuf};
66
const PATH_TO_JAVA_BINDINGS_FILE: &str = "java/java_code/src/main/java/ethereum/cryptography";
77

88
// These are the files needed to pass to the `javac` command to generate the header file
9-
const INPUT_FILES: [&str; 2] = ["LibPeerDASKZG.java", "CellsAndProofs.java"];
9+
const INPUT_FILES: [&str; 3] = [
10+
"LibPeerDASKZG.java",
11+
"CellsAndProofs.java",
12+
"CellsAndProofsDeflattened.java",
13+
];
1014

1115
fn main() {
1216
let path_to_bindings_dir = path_to_bindings_folder();

0 commit comments

Comments
 (0)