Skip to content

Commit 9b0918a

Browse files
authored
fix: pub finalize config (#6)
1 parent 046956a commit 9b0918a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "oura"
33
description = "The tail of Cardano"
4-
version = "1.11.0"
4+
version = "1.11.1"
55
edition = "2021"
66
repository = "https://github.com/txpipe/oura"
77
homepage = "https://github.com/txpipe/oura"

src/sources/common.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ pub enum IntersectArg {
222222

223223
#[derive(Deserialize, Debug, Clone)]
224224
pub struct FinalizeConfig {
225-
max_block_quantity: Option<u64>,
226-
max_block_slot: Option<u64>,
227-
until_hash: Option<String>,
225+
pub max_block_quantity: Option<u64>,
226+
pub max_block_slot: Option<u64>,
227+
pub until_hash: Option<String>,
228228
}
229229

230230
pub fn should_finalize(

0 commit comments

Comments
 (0)