mmpl: new, mempool + rpc: fixes

This commit is contained in:
nym21
2026-05-14 13:59:15 +02:00
parent 528c134f26
commit 90aca2e048
36 changed files with 1269 additions and 453 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ impl Blocks {
BlockRange::After { hash } => {
let start = if let Some(hash) = hash.as_ref() {
let block_info = client.get_block_header_info(hash)?;
(block_info.height + 1).into()
Height::from((block_info.height + 1) as u64)
} else {
Height::ZERO
};