Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion stacks-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ sha2 = { version = "0.10" }
toml = { workspace = true }

[features]
default = ["rusqlite", "vrf", "developer-mode", "ctrlc-handler", "rand"]
default = ["rusqlite", "vrf", "developer-mode", "ctrlc-handler", "rand", "clarity-wasm"]
developer-mode = []
# Enables graceful shutdown handling for Ctrl+C (SIGINT) signals.
# This pulls in the `nix` or `winapi` dependency.
Expand All @@ -103,3 +103,4 @@ wasm = ["developer-mode", "getrandom"]
# Wasm-specific features for easier configuration
wasm-web = ["rand", "getrandom/js", "libsecp256k1/static-context"]
wasm-deterministic = ["getrandom/custom"]
clarity-wasm = []
1 change: 1 addition & 0 deletions stacks-node/src/tests/integrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1996,6 +1996,7 @@ fn make_keys(seed: &str, count: u64) -> Vec<StacksPrivateKey> {
}

#[test]
#[cfg(not(feature = "clarity-wasm"))]
fn block_limit_runtime_test() {
let mut conf = new_test_conf();

Expand Down