Skip to content

Commit

Permalink
Fixed documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Eagle941 committed Oct 1, 2024
1 parent 95eb47c commit 7859ee6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 5 additions & 3 deletions starknet-replay/src/storage/rpc/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
//! This module uses the Starknet RPC protocol to query the data required to
//! replay transactions from the Starknet blockchain.
//! This module contains the implementation of the [`crate::storage::Storage`]
//! trait to replay transactions using the RPC client interface.
#![allow(clippy::module_name_repetitions)] // Added because of `ClassInfo`
#![allow(clippy::module_name_repetitions)] // Added because of `generate_class_info` in `class_info.rs`, `convert_receipt`
// in `receipt.rs`, `convert_transaction` in `transaction.rs`,
// `VisitedPcsRaw` in `visited_pcs. rs`, `RpcStorage` in `mod.rs`

use std::collections::BTreeMap;
use std::num::NonZeroU128;
Expand Down
6 changes: 2 additions & 4 deletions starknet-replay/src/storage/rpc/rpc_client.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
//! This module uses the Starknet RPC protocol to query the data required to
//! replay transactions from the Starknet blockchain.
#![allow(clippy::module_name_repetitions)] // Added because of `ClassInfo`
//! This module uses the Starknet RPC protocol to query the data from the
//! Starknet RPC server.
use starknet_api::block::{
BlockHash,
Expand Down

0 comments on commit 7859ee6

Please sign in to comment.