Skip to content

Commit

Permalink
fix img paths
Browse files Browse the repository at this point in the history
  • Loading branch information
BertrandD committed Nov 29, 2024
1 parent edd292c commit fced752
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ use utils::AppError;
mod contract;
mod utils;

static HYLLAR_BIN: &[u8] = include_bytes!("../../../../hyle3/contracts/hyllar/hyllar.img");
static HYDENTITY_BIN: &[u8] = include_bytes!("../../../../hyle3/contracts/hydentity/hydentity.img");
static AMM_BIN: &[u8] = include_bytes!("../../../../hyle3/contracts/amm/amm.img");
static HYLLAR_BIN: &[u8] = include_bytes!("../../../../hyle/contracts/hyllar/hyllar.img");
static HYDENTITY_BIN: &[u8] = include_bytes!("../../../../hyle/contracts/hydentity/hydentity.img");
static AMM_BIN: &[u8] = include_bytes!("../../../../hyle/contracts/amm/amm.img");

#[tokio::main]
async fn main() {
Expand Down

0 comments on commit fced752

Please sign in to comment.