Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions services/src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,11 @@ impl RpcDataFetcher {
.await
.unwrap()
.unwrap();
// todo hacky way of using auth set for hex devnet
let avail_chain_id = env::var("AVAIL_CHAIN_ID").expect("AVAIL_CHAIN_ID must be set");
if avail_chain_id == "hex" {
return set_id - 1;
}

set_id
}
Expand Down
Loading