Skip to content

Commit

Permalink
build: Fix path to room_contract.wasm in constants.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Dec 11, 2024
1 parent 2b69652 commit 2db79e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/constants.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub const KEY_VERSION_PREFIX: &str = "river:v1:user:vk:";

pub const ROOM_CONTRACT_WASM: &[u8] = include_bytes!("../../../target/wasm32-unknown-unknown/release/room_contract.wasm");
pub const ROOM_CONTRACT_WASM: &[u8] = include_bytes!("../../target/wasm32-unknown-unknown/release/room_contract.wasm");

// pub const ROOM_CONTRACT_CODE_HASH: CodeHash = CodeHash::from_code(ROOM_CONTRACT_WASM);

0 comments on commit 2db79e6

Please sign in to comment.