From 4a022771099c8e639fadf44070639acf1bd6a6e1 Mon Sep 17 00:00:00 2001 From: Kirill Fomichev Date: Wed, 26 Jul 2023 21:41:11 -0400 Subject: [PATCH] bump 1.6.1 Signed-off-by: Kirill Fomichev --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- yellowstone-grpc-geyser/Cargo.toml | 2 +- yellowstone-grpc-geyser/src/filters.rs | 5 ++++- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edbb96fe..a2d75d84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,14 @@ The minor version will be incremented upon a breaking change and the patch versi ### Breaking +## 2023-07-26 + +- yellowstone-grpc-geyser-1.6.1+solana.1.16.1 + +### Fix + +geyser: fix config example ([#168](https://github.com/rpcpool/yellowstone-grpc/pull/168)). + ## 2023-07-22 - yellowstone-grpc-geyser-1.6.0+solana.1.16.1 diff --git a/Cargo.lock b/Cargo.lock index f43b5ece..bedcd786 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4293,7 +4293,7 @@ dependencies = [ [[package]] name = "yellowstone-grpc-geyser" -version = "1.6.0+solana.1.16.1" +version = "1.6.1+solana.1.16.1" dependencies = [ "anyhow", "base64 0.21.2", diff --git a/Cargo.toml b/Cargo.toml index 15bd06fb..48c0a7c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ members = [ "examples/rust", # 1.8.0+solana.1.16.1 "yellowstone-grpc-client", # 1.8.0+solana.1.16.1 - "yellowstone-grpc-geyser", # 1.6.0+solana.1.16.1 + "yellowstone-grpc-geyser", # 1.6.1+solana.1.16.1 "yellowstone-grpc-proto", # 1.8.0+solana.1.16.1 ] diff --git a/yellowstone-grpc-geyser/Cargo.toml b/yellowstone-grpc-geyser/Cargo.toml index 79011b4e..3d59b0b6 100644 --- a/yellowstone-grpc-geyser/Cargo.toml +++ b/yellowstone-grpc-geyser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yellowstone-grpc-geyser" -version = "1.6.0+solana.1.16.1" +version = "1.6.1+solana.1.16.1" authors = ["Triton One"] edition = "2021" description = "Yellowstone gRPC Geyser Plugin" diff --git a/yellowstone-grpc-geyser/src/filters.rs b/yellowstone-grpc-geyser/src/filters.rs index 74441a9a..ae2b4324 100644 --- a/yellowstone-grpc-geyser/src/filters.rs +++ b/yellowstone-grpc-geyser/src/filters.rs @@ -558,7 +558,10 @@ impl FilterBlocks { let mut this = Self::default(); for (name, filter) in configs { - ConfigGrpcFilters::check_any(filter.account_include.is_empty(), limit.account_include_any)?; + ConfigGrpcFilters::check_any( + filter.account_include.is_empty(), + limit.account_include_any, + )?; ConfigGrpcFilters::check_pubkey_max( filter.account_include.len(), limit.account_include_max,