Skip to content

Commit

Permalink
refactor(consensus): move fee_market to concensus
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeletstarkware committed Dec 26, 2024
1 parent 5895682 commit eedeb13
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::fee_market::{
use crate::fee_market_logic::fee_market::{
calculate_next_base_gas_price,
GAS_PRICE_MAX_CHANGE_DENOMINATOR,
MAX_BLOCK_SIZE,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod fee_market;
4 changes: 4 additions & 0 deletions crates/sequencing/papyrus_consensus_orchestrator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ pub mod sequencer_consensus_context;
/// Centralized and decentralized communication types and functionallity.
#[allow(missing_docs)]
pub mod cende;

/// Fee market logic.
#[allow(missing_docs)]
pub mod fee_market_logic;
1 change: 0 additions & 1 deletion crates/starknet_batcher/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ pub mod block_builder;
mod block_builder_test;
pub mod communication;
pub mod config;
pub mod fee_market;
#[cfg(test)]
mod test_utils;
mod transaction_executor;
Expand Down

0 comments on commit eedeb13

Please sign in to comment.