Skip to content

Commit

Permalink
fix: enable legacy filter (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-ramos committed Oct 4, 2023
1 parent e61732a commit 190e1f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion waku-bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "waku-bindings"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
authors = [
"Daniel Sanchez Quiros <danielsq@status.im>"
Expand Down
1 change: 1 addition & 0 deletions waku-bindings/src/node/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ pub struct WakuNodeConfig {
pub min_peers_to_publish: Option<usize>,
/// Enable filter protocol. Default `false`
#[default(Some(false))]
#[serde(rename = "legacyFilter")]
pub filter: Option<bool>,
/// Set the log level. Default `INFO`. Allowed values "DEBUG", "INFO", "WARN", "ERROR", "DPANIC", "PANIC", "FATAL"
#[default(Some(WakuLogLevel::Info))]
Expand Down

0 comments on commit 190e1f6

Please sign in to comment.