Skip to content

Commit

Permalink
chore(l1-provider): use the correct tx type + fix crate package
Browse files Browse the repository at this point in the history
  • Loading branch information
yair-starkware committed Nov 7, 2024
1 parent 75fcd63 commit 697d79a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ starknet_consensus_manager = { path = "crates/consensus_manager", version = "0.0
starknet_gateway = { path = "crates/gateway", version = "0.0.0" }
starknet_gateway_types = { path = "crates/gateway_types", version = "0.0.0" }
starknet_http_server = { path = "crates/http_server", version = "0.0.0" }
starknet_l1_provider = { path = "crates/l1-provider", version = "0.0.0" }
starknet_mempool = { path = "crates/mempool", version = "0.0.0" }
starknet_mempool_p2p = { path = "crates/mempool_p2p", version = "0.0.0" }
starknet_mempool_p2p_types = { path = "crates/mempool_p2p_types", version = "0.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/l1-provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "l1-provider"
name = "starknet_l1_provider"
version.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
3 changes: 2 additions & 1 deletion crates/l1-provider/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pub mod errors;

use starknet_api::transaction::{L1HandlerTransaction, TransactionHash};
use starknet_api::executable_transaction::L1HandlerTransaction;
use starknet_api::transaction::TransactionHash;

use crate::errors::L1ProviderError;

Expand Down

0 comments on commit 697d79a

Please sign in to comment.