Ethereum relayer server

Causes send test to pass for the processor.
This commit is contained in:
Luke Parker
2024-05-22 18:50:11 -04:00
parent ac709b2945
commit 1d2beb3ee4
20 changed files with 416 additions and 44 deletions

View File

@@ -85,7 +85,7 @@ pub fn build(name: String) {
}
let mut dockerfile_path = orchestration_path.clone();
if HashSet::from(["bitcoin", "ethereum", "monero"]).contains(name.as_str()) {
if HashSet::from(["bitcoin", "ethereum", "ethereum-relayer", "monero"]).contains(name.as_str()) {
dockerfile_path = dockerfile_path.join("coins");
}
if name.contains("-processor") {
@@ -125,6 +125,7 @@ pub fn build(name: String) {
let meta = |path: PathBuf| (path.clone(), fs::metadata(path));
let mut metadatas = match name.as_str() {
"bitcoin" | "ethereum" | "monero" => vec![],
"ethereum-relayer" => vec![meta(repo_path.join("common")), meta(repo_path.join("coins"))],
"message-queue" => vec![
meta(repo_path.join("common")),
meta(repo_path.join("crypto")),