Skip to content

Commit 0b727aa

Browse files
committed
fix: update sdk to 0.10.1
1 parent 6a9d979 commit 0b727aa

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.10.0"
6+
version = "0.10.1"
77
edition = "2024"
88
rust-version = "1.88"
99
authors = ["init4"]
@@ -41,14 +41,14 @@ signet-rpc = { version = "0.10.0", path = "crates/rpc" }
4141

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

44-
signet-bundle = "0.10.0"
45-
signet-constants = "0.10.0"
46-
signet-evm = "0.10.0"
47-
signet-extract = "0.10.0"
48-
signet-journal = "0.10.0"
49-
signet-tx-cache = "0.10.0"
50-
signet-types = "0.10.0"
51-
signet-zenith = "0.10.0"
44+
signet-bundle = "0.10.1"
45+
signet-constants = "0.10.1"
46+
signet-evm = "0.10.1"
47+
signet-extract = "0.10.1"
48+
signet-journal = "0.10.1"
49+
signet-tx-cache = "0.10.1"
50+
signet-types = "0.10.1"
51+
signet-zenith = "0.10.1"
5252

5353
# ajj
5454
ajj = { version = "0.3.4" }

crates/db/src/journal/trait.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub trait JournalDb: RuWriter {
2222
let journal_hash = journal.journal_hash();
2323

2424
let (meta, bsi) = journal.into_parts();
25-
let (_, _, header) = meta.into_parts();
25+
let (host_height, _, header) = meta.into_parts();
2626

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

3434
let block: SealedBlock<TransactionSigned, Header> =
3535
SealedBlock { header: SealedHeader::new(header), body: Default::default() };
36-
let block_result =
37-
BlockResult { sealed_block: RecoveredBlock::new(block, vec![]), execution_outcome };
36+
let block_result = BlockResult {
37+
sealed_block: RecoveredBlock::new(block, vec![]),
38+
execution_outcome,
39+
host_height,
40+
};
3841

3942
self.append_host_block(
4043
None,

crates/db/src/provider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ where
417417
//
418418
// last reviewed at tag v1.5.1
419419

420-
let BlockResult { sealed_block: block, execution_outcome } = block_result;
420+
let BlockResult { sealed_block: block, execution_outcome, .. } = block_result;
421421

422422
let ru_height = block.number();
423423
self.insert_signet_block(header, block, journal_hash, StorageLocation::Database)?;

0 commit comments

Comments
 (0)