Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix erros #447

Merged
merged 5 commits into from
Feb 27, 2025
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
2 changes: 1 addition & 1 deletion contracts/script/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ This is a two-step process, guarded by the `TimelockController`.

This will output the image ID and file location.
Upload the ELF to some public HTTP location (such as Pinata), and get back a download URL.
Finally export these values in the in the `SET_BUILDER_IMAGE_ID` and `SET_BUILDER_GUEST_URL` env variables.
Finally export these values in the `SET_BUILDER_IMAGE_ID` and `SET_BUILDER_GUEST_URL` env variables.

> [!TIP]
> You can use the following command to check that the uploaded ELF has the image ID you expect.
Expand Down
2 changes: 1 addition & 1 deletion crates/steel/docs/create-steel-app/create-steel-app
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ check_rust() {
# check forge installation, suggest installation if not found
check_foundry() {
if ! command -v forge &> /dev/null; then
echo "foundry not found. to install, visit: https://book.getfoundry.sh/getting-started/installation:"
echo "foundry not found. to install, visit: https://book.getfoundry.sh/getting-started/installation"
exit 1
fi
}
Expand Down
2 changes: 1 addition & 1 deletion crates/steel/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub struct StateDb {
/// State MPT.
state_trie: MerkleTrie,
/// Storage MPTs to their root hash.
/// [Rc] is used fore MPT deduplication.
/// [Rc] is used for MPT deduplication.
storage_tries: B256HashMap<Rc<MerkleTrie>>,
/// Contracts by their hash.
contracts: B256HashMap<Bytes>,
Expand Down
Loading