Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.10.0"
version = "0.10.1"
edition = "2024"
rust-version = "1.88"
authors = ["init4"]
Expand Down Expand Up @@ -41,14 +41,14 @@ signet-rpc = { version = "0.10.0", path = "crates/rpc" }

init4-bin-base = { version = "0.11.0", features = ["alloy"] }

signet-bundle = "0.10.0"
signet-constants = "0.10.0"
signet-evm = "0.10.0"
signet-extract = "0.10.0"
signet-journal = "0.10.0"
signet-tx-cache = "0.10.0"
signet-types = "0.10.0"
signet-zenith = "0.10.0"
signet-bundle = "0.10.1"
signet-constants = "0.10.1"
signet-evm = "0.10.1"
signet-extract = "0.10.1"
signet-journal = "0.10.1"
signet-tx-cache = "0.10.1"
signet-types = "0.10.1"
signet-zenith = "0.10.1"

# ajj
ajj = { version = "0.3.4" }
Expand Down
9 changes: 6 additions & 3 deletions crates/db/src/journal/trait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub trait JournalDb: RuWriter {
let journal_hash = journal.journal_hash();

let (meta, bsi) = journal.into_parts();
let (_, _, header) = meta.into_parts();
let (host_height, _, header) = meta.into_parts();

// TODO: remove the clone in future versions. This can be achieved by
// _NOT_ making a `BlockResult` and instead manually updating relevan
Expand All @@ -33,8 +33,11 @@ pub trait JournalDb: RuWriter {

let block: SealedBlock<TransactionSigned, Header> =
SealedBlock { header: SealedHeader::new(header), body: Default::default() };
let block_result =
BlockResult { sealed_block: RecoveredBlock::new(block, vec![]), execution_outcome };
let block_result = BlockResult {
sealed_block: RecoveredBlock::new(block, vec![]),
execution_outcome,
host_height,
};

self.append_host_block(
None,
Expand Down
2 changes: 1 addition & 1 deletion crates/db/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ where
//
// last reviewed at tag v1.5.1

let BlockResult { sealed_block: block, execution_outcome } = block_result;
let BlockResult { sealed_block: block, execution_outcome, .. } = block_result;

let ru_height = block.number();
self.insert_signet_block(header, block, journal_hash, StorageLocation::Database)?;
Expand Down
Loading