Skip to content
This repository was archived by the owner on Oct 16, 2025. It is now read-only.
Closed
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Confirmed tx 0x0bdb…3307, gas used 14204908

**cargo stylus check**

Instruments a Rust project using Stylus. This command runs compiled WASM code through Stylus instrumentation checks and reports any failures. It **verifies the contract can compile onchain** by making an eth_call to a Arbitrum chain RPC endpoint.
Instruments a Rust project using Stylus. This command runs compiled WASM code through Stylus instrumentation checks and reports any failures. It **verifies the contract can compile onchain** by making an eth_call to an Arbitrum chain RPC endpoint.

```
Usage: cargo stylus check [OPTIONS]
Expand Down
2 changes: 1 addition & 1 deletion main/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ fn all_paths(root_dir: &Path, source_file_patterns: Vec<String>) -> Result<Vec<P
}
directories.push(path);
} else if path.file_name().is_some_and(|f| {
// If the user has has specified a list of source file patterns, check if the file
// If the user has specified a list of source file patterns, check if the file
// matches the pattern.
if !glob_paths.is_empty() {
for glob_path in glob_paths.iter() {
Expand Down