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
2 changes: 1 addition & 1 deletion packages/rs-sdk-trusted-context-provider/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ impl ContextProvider for TrustedHttpContextProvider {
match self.network {
Network::Mainnet => Ok(2132092), // Mainnet L1 locked height
Network::Testnet => Ok(1090319), // Testnet L1 locked height
Network::Devnet => Ok(1), // Devnet activation height
Network::Devnet | Network::Regtest => Ok(1), // Devnet/Regtest activation height
_ => Err(ContextProviderError::Generic(
"Unsupported network".to_string(),
)),
Expand Down
Loading