Skip to content

Commit

Permalink
fix: pub finalize config
Browse files Browse the repository at this point in the history
  • Loading branch information
pocesar committed Oct 24, 2024
1 parent 046956a commit 71d6645
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "oura"
description = "The tail of Cardano"
version = "1.11.0"
version = "1.11.1"
edition = "2021"
repository = "https://github.com/txpipe/oura"
homepage = "https://github.com/txpipe/oura"
Expand Down
6 changes: 3 additions & 3 deletions src/sources/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ pub enum IntersectArg {

#[derive(Deserialize, Debug, Clone)]
pub struct FinalizeConfig {
max_block_quantity: Option<u64>,
max_block_slot: Option<u64>,
until_hash: Option<String>,
pub max_block_quantity: Option<u64>,
pub max_block_slot: Option<u64>,
pub until_hash: Option<String>,
}

pub fn should_finalize(
Expand Down

0 comments on commit 71d6645

Please sign in to comment.