Skip to content

Commit

Permalink
chore(batcher): add height as input
Browse files Browse the repository at this point in the history
  • Loading branch information
ArniStarkware committed Nov 28, 2024
1 parent f632fef commit 3021db8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use papyrus_protobuf::consensus::{
TransactionBatch,
Vote,
};
use starknet_api::block::{BlockHash, BlockHashAndNumber, BlockNumber};
use starknet_api::block::{BlockHash, BlockHashAndNumber, BlockInfo, BlockNumber};
use starknet_api::executable_transaction::Transaction;
use starknet_batcher_types::batcher_types::{
DecisionReachedInput,
Expand Down Expand Up @@ -132,7 +132,7 @@ impl ConsensusContext for SequencerConsensusContext {
hash: BlockHash::default(),
}),
// TODO: Fill block info.
block_info: Default::default(),
block_info: BlockInfo { block_number: proposal_init.height, ..Default::default() },
};
// TODO: Should we be returning an error?
// I think this implies defining an error type in this crate and moving the trait definition
Expand Down Expand Up @@ -310,7 +310,7 @@ impl SequencerConsensusContext {
hash: BlockHash::default(),
}),
// TODO: Fill block info.
block_info: Default::default(),
block_info: BlockInfo { block_number: height, ..Default::default() },
};
batcher.validate_block(input).await.expect("Failed to initiate proposal validation");

Expand Down

0 comments on commit 3021db8

Please sign in to comment.