Skip to content

Commit

Permalink
view toml
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Sep 20, 2023
1 parent 02d761f commit 057eb26
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 14 deletions.
115 changes: 104 additions & 11 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 crates/sequencer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ license.workspace = true
# Starknet
blockifier = { git = "https://github.com/starkware-libs/blockifier.git", tag = "v0.3.0-rc0" }
starknet_api = "0.5.0-rc1"
starknet = { workspace = true }

# Other
rustc-hash = "1.1.0"
Expand Down
4 changes: 1 addition & 3 deletions crates/sequencer/src/sequencer.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::config::SequencerConfig;
use blockifier::block_context::BlockContext;
use blockifier::state::state_api::{State, StateReader};

/// Sequencer is the main struct of the sequencer crate.
Expand All @@ -20,6 +20,4 @@ where
pub fn new(context: BlockContext, state: S) -> Self {
Self { context, state }
}
}
}
}

0 comments on commit 057eb26

Please sign in to comment.