the node interaction interface

Signed-off-by: xermicus <bigcyrill@hotmail.com>
This commit is contained in:
xermicus
2025-03-22 19:41:24 +01:00
parent 3b713ad2cb
commit f9a0542d49
12 changed files with 276 additions and 57 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ pub fn build_evm(
let mut result = HashMap::new();
for mode in modes {
let mut compiler = Compiler::<Solc>::new().base_path(directory.display().to_string());
for (_, file) in &sources {
for file in sources.values() {
compiler = compiler.with_source(file)?;
}