Skip to content

Commit 2ceec74

Browse files
feat(block-producer): promote redesign (#541)
Replace FIFO with the mempool block-producer rework. This still has known bugs and issues; notably the client's integration tests sometimes hang.
1 parent 74da4ca commit 2ceec74

27 files changed

Lines changed: 409 additions & 2070 deletions

File tree

crates/block-producer/src/batch_builder/batch.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ use miden_objects::{
99
batches::BatchNoteTree,
1010
crypto::hash::blake::{Blake3Digest, Blake3_256},
1111
notes::{NoteHeader, NoteId, Nullifier},
12-
transaction::{InputNoteCommitment, OutputNote, TransactionId},
12+
transaction::{InputNoteCommitment, OutputNote, ProvenTransaction, TransactionId},
1313
AccountDeltaError, Digest, MAX_ACCOUNTS_PER_BATCH, MAX_INPUT_NOTES_PER_BATCH,
1414
MAX_OUTPUT_NOTES_PER_BATCH,
1515
};
1616
use tracing::instrument;
1717

18-
use crate::{errors::BuildBatchError, ProvenTransaction};
18+
use crate::errors::BuildBatchError;
1919

2020
pub type BatchId = Blake3Digest<32>;
2121

0 commit comments

Comments
 (0)